diff options
author | Mike Fulbright <msf@redhat.com> | 2003-05-01 19:06:29 +0000 |
---|---|---|
committer | Mike Fulbright <msf@redhat.com> | 2003-05-01 19:06:29 +0000 |
commit | f41839f15346dd983982c2f101e87d9a9d6c3c09 (patch) | |
tree | 9c074e227c22af4e8fa4af1524dfcde662a5a4be /isys/isys.py | |
parent | bd3ae2e24a410e2444b1b614b8361dbdd2d10bab (diff) | |
download | anaconda-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.py | 6 |
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 |