summaryrefslogtreecommitdiffstats
path: root/isys
diff options
context:
space:
mode:
authorPeter Jones <pjones@redhat.com>2008-04-09 18:35:55 -0400
committerPeter Jones <pjones@pjones2.localdomain>2008-04-09 18:35:55 -0400
commit0e64e7707681dc5c246d2cc5fef78cac63548232 (patch)
treea2819137e9a826f65f6b8c3d202697326f88dfba /isys
parenta666b22ba61f032100fef78a9a0af2635717f9ae (diff)
downloadanaconda-0e64e7707681dc5c246d2cc5fef78cac63548232.tar.gz
anaconda-0e64e7707681dc5c246d2cc5fef78cac63548232.tar.xz
anaconda-0e64e7707681dc5c246d2cc5fef78cac63548232.zip
Actually use the mount flags passed to isys.mount()
Diffstat (limited to 'isys')
-rwxr-xr-xisys/isys.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/isys/isys.py b/isys/isys.py
index 840ebf9a7..bfd379250 100755
--- a/isys/isys.py
+++ b/isys/isys.py
@@ -331,9 +331,9 @@ def mount(device, location, fstype = "ext2", readOnly = 0, bindMount = 0, remoun
if remount:
opts.append("remount")
- flags = ",".join(opts)
+ flags = ",".join(opts)
- log.debug("isys.py:mount()- going to mount %s on %s" %(device, location))
+ log.debug("isys.py:mount()- going to mount %s on %s with options %s" %(device, location, flags))
rc = _isys.mount(fstype, device, location, flags)
if not rc: