summaryrefslogtreecommitdiffstats
path: root/harddrive.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 /harddrive.py
parentfdf77eb2b998edad8620fb639e426329172ed6a3 (diff)
downloadanaconda-6262ef48189f6716b2448d0584c38f02c695eb6c.tar.gz
anaconda-6262ef48189f6716b2448d0584c38f02c695eb6c.tar.xz
anaconda-6262ef48189f6716b2448d0584c38f02c695eb6c.zip
reworked mount semantics
Diffstat (limited to 'harddrive.py')
-rw-r--r--harddrive.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/harddrive.py b/harddrive.py
index bd42722e4..e72ab4d1e 100644
--- a/harddrive.py
+++ b/harddrive.py
@@ -27,9 +27,7 @@ class HardDriveInstallMethod(InstallMethod):
self.tree = s[1] + "/"
return
- isys.makeDevInode(self.device, '/tmp/' + self.device)
- isys.mount('/tmp/' + self.device, "/tmp/hdimage",
- fstype = self.fstype);
+ isys.mount(self.device, "/tmp/hdimage", fstype = self.fstype);
self.tree = "/tmp/hdimage/"
self.isMounted = 1