summaryrefslogtreecommitdiffstats
path: root/iutil.py
diff options
context:
space:
mode:
authordlehman <dlehman>2007-07-11 16:50:44 +0000
committerdlehman <dlehman>2007-07-11 16:50:44 +0000
commit074f565136ede16609c95a8899e895cf0a991823 (patch)
tree93c47d26ae7777bb938f42dc228a3a90d8cc0145 /iutil.py
parent043f8b8e71f69d142336889f12b28897b7e85b81 (diff)
downloadanaconda-074f565136ede16609c95a8899e895cf0a991823.tar.gz
anaconda-074f565136ede16609c95a8899e895cf0a991823.tar.xz
anaconda-074f565136ede16609c95a8899e895cf0a991823.zip
* urlinstall.py (UrlInstallMethod.filesDone): don't log errors when
unmounting /mnt/source since it wasn't necessarily supposed to be mounted in the first place (#223059) * gui.py (InstallKeyWindow): handle F12 shortcut key (#210673) * iutil.py (makeDriveDeviceNodes): create device nodes for tape drives (#218816) * isys/isys.py (tapeDriveList): new function to list tape drives * isys/isys.py (driveDict): probe for tape drives, too
Diffstat (limited to 'iutil.py')
-rw-r--r--iutil.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/iutil.py b/iutil.py
index 70d12bf5e..4e31e528a 100644
--- a/iutil.py
+++ b/iutil.py
@@ -259,6 +259,10 @@ def makeDriveDeviceNodes():
for drive in cdroms:
isys.makeDevInode(drive, "/dev/%s" % (drive,))
+ tapeDrives = isys.tapeDriveList()
+ for drive in tapeDrives:
+ isys.makeDevInode(drive, "/dev/%s" % (drive,))
+
for mdMinor in range(0, 32):
md = "md%d" %(mdMinor,)
isys.makeDevInode(md, "/dev/%s" %(md,))