summaryrefslogtreecommitdiffstats
path: root/fsset.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2004-02-06 18:20:18 +0000
committerJeremy Katz <katzj@redhat.com>2004-02-06 18:20:18 +0000
commitfd0fb6aba469a8f332de87b2703cbb42b5582490 (patch)
treeeed1f1a4700584f963a9ee8a07b3c283dd9c552e /fsset.py
parent03fd3dae1743bd3c998b1383d26b4c391b8e23ca (diff)
downloadanaconda-fd0fb6aba469a8f332de87b2703cbb42b5582490.tar.gz
anaconda-fd0fb6aba469a8f332de87b2703cbb42b5582490.tar.xz
anaconda-fd0fb6aba469a8f332de87b2703cbb42b5582490.zip
fix jfs_tune path (#115101)
Diffstat (limited to 'fsset.py')
-rw-r--r--fsset.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/fsset.py b/fsset.py
index 3da32cb34..532de2b18 100644
--- a/fsset.py
+++ b/fsset.py
@@ -472,7 +472,7 @@ class jfsFileSystem(FileSystemType):
def labelDevice(self, entry, chroot):
devicePath = entry.device.setupDevice(chroot)
label = labelFactory.createLabel(entry.mountpoint, self.maxLabelChars)
- rc = iutil.execWithRedirect("/sbin/jfs_tune",
+ rc = iutil.execWithRedirect("/usr/sbin/jfs_tune",
["jfs_tune", "-L", label, devicePath],
stdout = "/dev/tty5",
stderr = "/dev/tty5")