summaryrefslogtreecommitdiffstats
path: root/packages.py
diff options
context:
space:
mode:
authorDavid Cantrell <dcantrell@redhat.com>2008-12-23 16:46:05 -1000
committerDavid Cantrell <dcantrell@redhat.com>2008-12-23 16:46:05 -1000
commit77708d447bcae2b8803d77aae1f6c91f706435b1 (patch)
tree4c5e4610ca2c8750d6ca83ff543820363de6763b /packages.py
parentdc8623f38df20d38da69cdd5a1b16422ec6608bc (diff)
downloadanaconda-77708d447bcae2b8803d77aae1f6c91f706435b1.tar.gz
anaconda-77708d447bcae2b8803d77aae1f6c91f706435b1.tar.xz
anaconda-77708d447bcae2b8803d77aae1f6c91f706435b1.zip
Call '/sbin/udevadm settle' instead of /sbin/udevsettle
Diffstat (limited to 'packages.py')
-rw-r--r--packages.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages.py b/packages.py
index cfc6ba2ae..7478c10c0 100644
--- a/packages.py
+++ b/packages.py
@@ -147,7 +147,7 @@ def turnOnFilesystems(anaconda):
# to settle
time.sleep(1)
w = anaconda.intf.waitWindow(_("Activating"), _("Activating new partitions. Please wait..."))
- rc = iutil.execWithRedirect("udevsettle", [],
+ rc = iutil.execWithRedirect("/sbin/udevadm", [ "settle" ],
stdout = "/dev/tty5",
stderr = "/dev/tty5",
searchPath = 1)