Skip to content

Commit

Permalink
Merge pull request #54 from lukemartinlogan/master
Browse files Browse the repository at this point in the history
fs[mount]
  • Loading branch information
lukemartinlogan authored Jan 28, 2025
2 parents 44133ad + bc8d9dc commit aebb80d
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions jarvis_util/introspect/system_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -528,14 +528,12 @@ def introspect_fs(self, exec_info, sudo=False):
on=['device', 'host'],
how='outer')
fs['mount'] = fs['fs_mount']
print(fs)
fs = self._find_common_mounts(fs, exec_info)
fs = self._label_user_mounts(fs)
fs = fs.drop_columns([
'used', 'use%', 'fs_mount', 'partuuid', 'fs_size',
'partlabel', 'label', 'host'])
self.fs = fs
print(self.fs)
return self.fs

def _find_common_mounts(self, fs, exec_info):
Expand Down

0 comments on commit aebb80d

Please sign in to comment.