summaryrefslogtreecommitdiffstats
path: root/storage/formats
diff options
context:
space:
mode:
Diffstat (limited to 'storage/formats')
-rw-r--r--storage/formats/fs.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/storage/formats/fs.py b/storage/formats/fs.py
index 55c7a2e8b..dc642d38c 100644
--- a/storage/formats/fs.py
+++ b/storage/formats/fs.py
@@ -855,9 +855,10 @@ class Ext2FS(FS):
return
try:
- rc = iutil.execWithRedirect("/usr/sbin/tune2fs",
+ rc = iutil.execWithRedirect("tune2fs",
["-c0", "-i0",
"-ouser_xattr,acl", self.device],
+ searchPath = True,
stdout = "/dev/tty5",
stderr = "/dev/tty5")
except Exception as e: