summaryrefslogtreecommitdiffstats
path: root/image.py
diff options
context:
space:
mode:
authorErik Troan <ewt@redhat.com>2000-05-16 16:56:11 +0000
committerErik Troan <ewt@redhat.com>2000-05-16 16:56:11 +0000
commit6262ef48189f6716b2448d0584c38f02c695eb6c (patch)
treede9afb779ddb5fcc016fa00fa51f6cc0ba6d2649 /image.py
parentfdf77eb2b998edad8620fb639e426329172ed6a3 (diff)
downloadanaconda-6262ef48189f6716b2448d0584c38f02c695eb6c.tar.gz
anaconda-6262ef48189f6716b2448d0584c38f02c695eb6c.tar.xz
anaconda-6262ef48189f6716b2448d0584c38f02c695eb6c.zip
reworked mount semantics
Diffstat (limited to 'image.py')
-rw-r--r--image.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/image.py b/image.py
index e8f2ca48a..915d117b5 100644
--- a/image.py
+++ b/image.py
@@ -46,10 +46,9 @@ class CdromInstallMethod(ImageInstallMethod):
while not done:
self.messageWindow(_("Change CDROM"),
_("Please insert disc %d to continue.") % self.currentDisc)
- isys.makeDevInode(self.device, "/tmp/cdrom")
try:
- isys.mount("/tmp/cdrom", "/mnt/source", fstype = "iso9660",
+ isys.mount(self.device, "/mnt/source", fstype = "iso9660",
readOnly = 1)
if os.access("/mnt/source/%s" % key, os.O_RDONLY):