diff options
author | Endres <github@e7p.de> | 2014-06-26 23:39:58 +0200 |
---|---|---|
committer | Endres <github@e7p.de> | 2014-06-26 23:39:58 +0200 |
commit | 49cf8bd367f9b7f63e73562c5e141a8d5582d7e0 (patch) | |
tree | 22b3cce17a4f84beb9eaf2a37781ef29747f67aa | |
parent | b788d717674c8789f0d16e65e0f428455dd3da48 (diff) |
Added XFS File System to the df call
-rwxr-xr-x[-rw-r--r--] | archey | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -221,7 +221,7 @@ class RAM: class Disk: def __init__(self): - p1 = Popen(['df', '-Tlh', '--total', '-t', 'ext4', '-t', 'ext3', '-t', 'ext2', '-t', 'reiserfs', '-t', 'jfs', '-t', 'ntfs', '-t', 'fat32', '-t', 'btrfs', '-t', 'fuseblk'], stdout=PIPE).communicate()[0].decode("Utf-8") + p1 = Popen(['df', '-Tlh', '--total', '-t', 'ext4', '-t', 'ext3', '-t', 'ext2', '-t', 'reiserfs', '-t', 'jfs', '-t', 'ntfs', '-t', 'fat32', '-t', 'btrfs', '-t', 'fuseblk', '-t', 'xfs'], stdout=PIPE).communicate()[0].decode("Utf-8") total = p1.splitlines()[-1] used = total.split()[3] size = total.split()[2] |