summaryrefslogtreecommitdiffstats
path: root/iutil.py
diff options
context:
space:
mode:
authorPeter Jones <pjones@redhat.com>2006-08-18 21:44:00 +0000
committerPeter Jones <pjones@redhat.com>2006-08-18 21:44:00 +0000
commita1089c00d31c145efc326968f8f06494a6885eac (patch)
tree4ddef350d50bcc73ab701ed35251a90e6b61692d /iutil.py
parentb7213f33517ecc564c53e7a7846d98c240d3b3ea (diff)
downloadanaconda-a1089c00d31c145efc326968f8f06494a6885eac.tar.gz
anaconda-a1089c00d31c145efc326968f8f06494a6885eac.tar.xz
anaconda-a1089c00d31c145efc326968f8f06494a6885eac.zip
- don't call isys.flushDriveDict() from makeDriveDeviceNodes(), as it
screws up dm devices in our cache
Diffstat (limited to 'iutil.py')
-rw-r--r--iutil.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/iutil.py b/iutil.py
index a606f7ddd..77138c9a1 100644
--- a/iutil.py
+++ b/iutil.py
@@ -215,7 +215,6 @@ def makeCharDeviceNodes():
# make the device nodes for all of the drives on the system
def makeDriveDeviceNodes():
- isys.flushDriveDict()
hardDrives = isys.hardDriveDict()
for drive in hardDrives.keys():
if drive.startswith("mapper"):
@@ -239,7 +238,6 @@ def makeDriveDeviceNodes():
dev = "%s%s%d" % (drive, sep, i)
isys.makeDevInode(dev, "/dev/%s" % (dev,))
- isys.flushDriveDict()
cdroms = isys.cdromList()
for drive in cdroms:
isys.makeDevInode(drive, "/dev/%s" % (drive,))