summaryrefslogtreecommitdiffstats
path: root/isys
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>2000-07-03 19:41:00 +0000
committerMatt Wilson <msw@redhat.com>2000-07-03 19:41:00 +0000
commit7d508f91f670cd671cae2071b6ca76b731a68bf0 (patch)
tree3568e480f3399bf1be42a43b167325179a801664 /isys
parenta24a6fbfd6c374434421b7a039d6fdd9d29bf6ec (diff)
downloadanaconda-7d508f91f670cd671cae2071b6ca76b731a68bf0.tar.gz
anaconda-7d508f91f670cd671cae2071b6ca76b731a68bf0.tar.xz
anaconda-7d508f91f670cd671cae2071b6ca76b731a68bf0.zip
use /tmp/%s to make the devices
Diffstat (limited to 'isys')
-rw-r--r--isys/isys.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/isys/isys.py b/isys/isys.py
index 2b34e929f..5bfeccdf1 100644
--- a/isys/isys.py
+++ b/isys/isys.py
@@ -85,7 +85,7 @@ def mount(device, location, fstype = "ext2", readOnly = 0):
location = os.path.normpath(location)
if device != "/proc":
- devName = "/dev/%s" % device
+ devName = "/tmp/%s" % device
makeDevInode(device, devName)
device = devName