diff options
author | Matt Wilson <msw@redhat.com> | 2000-07-03 19:41:00 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 2000-07-03 19:41:00 +0000 |
commit | 7d508f91f670cd671cae2071b6ca76b731a68bf0 (patch) | |
tree | 3568e480f3399bf1be42a43b167325179a801664 /isys | |
parent | a24a6fbfd6c374434421b7a039d6fdd9d29bf6ec (diff) | |
download | anaconda-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.py | 2 |
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 |