summaryrefslogtreecommitdiffstats
path: root/isys/isys.py
diff options
context:
space:
mode:
authorMike Fulbright <msf@redhat.com>2003-05-01 19:06:29 +0000
committerMike Fulbright <msf@redhat.com>2003-05-01 19:06:29 +0000
commitf41839f15346dd983982c2f101e87d9a9d6c3c09 (patch)
tree9c074e227c22af4e8fa4af1524dfcde662a5a4be /isys/isys.py
parentbd3ae2e24a410e2444b1b614b8361dbdd2d10bab (diff)
downloadanaconda-f41839f15346dd983982c2f101e87d9a9d6c3c09.tar.gz
anaconda-f41839f15346dd983982c2f101e87d9a9d6c3c09.tar.xz
anaconda-f41839f15346dd983982c2f101e87d9a9d6c3c09.zip
make useful debugging more useful and support remount
Diffstat (limited to 'isys/isys.py')
-rw-r--r--isys/isys.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/isys/isys.py b/isys/isys.py
index d1e6f6dee..8d26d4f55 100644
--- a/isys/isys.py
+++ b/isys/isys.py
@@ -139,7 +139,7 @@ def ddfile(file, megs, pw = None):
os.close(fd)
-def mount(device, location, fstype = "ext2", readOnly = 0, bindMount = 0):
+def mount(device, location, fstype = "ext2", readOnly = 0, bindMount = 0, remount = 0):
location = os.path.normpath(location)
#
@@ -158,8 +158,8 @@ def mount(device, location, fstype = "ext2", readOnly = 0, bindMount = 0):
mountCount[location] = mountCount[location] + 1
return
- log("going to mount %s on %s" %(device, location))
- rc = _isys.mount(fstype, device, location, readOnly, bindMount)
+ log("isys.py:mount()- going to mount %s on %s" %(device, location))
+ rc = _isys.mount(fstype, device, location, readOnly, bindMount, remount)
if not rc:
mountCount[location] = 1