diff options
author | Jeremy Katz <katzj@redhat.com> | 2004-02-06 18:20:18 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2004-02-06 18:20:18 +0000 |
commit | fd0fb6aba469a8f332de87b2703cbb42b5582490 (patch) | |
tree | eed1f1a4700584f963a9ee8a07b3c283dd9c552e /fsset.py | |
parent | 03fd3dae1743bd3c998b1383d26b4c391b8e23ca (diff) | |
download | anaconda-fd0fb6aba469a8f332de87b2703cbb42b5582490.tar.gz anaconda-fd0fb6aba469a8f332de87b2703cbb42b5582490.tar.xz anaconda-fd0fb6aba469a8f332de87b2703cbb42b5582490.zip |
fix jfs_tune path (#115101)
Diffstat (limited to 'fsset.py')
-rw-r--r-- | fsset.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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") |