summaryrefslogtreecommitdiffstats
path: root/isys
diff options
context:
space:
mode:
authorJoel Andres Granados <jgranado@redhat.com>2008-02-20 22:13:46 +0100
committerJoel Andres Granados <jgranado@redhat.com>2008-02-20 22:13:46 +0100
commit90df780cb2b6db3d02daebd4f00c8e514f1e4dc0 (patch)
tree680132c4117363a3e09975ff1c78cfdaf85d6f10 /isys
parentbd670a65f58430de55534e2cfb7dae6214f80f24 (diff)
downloadanaconda-90df780cb2b6db3d02daebd4f00c8e514f1e4dc0.tar.gz
anaconda-90df780cb2b6db3d02daebd4f00c8e514f1e4dc0.tar.xz
anaconda-90df780cb2b6db3d02daebd4f00c8e514f1e4dc0.zip
the '-o' is appended to the mount command in imount.c
Diffstat (limited to 'isys')
-rwxr-xr-xisys/isys.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/isys/isys.py b/isys/isys.py
index e9b974291..2dcd1f8ee 100755
--- a/isys/isys.py
+++ b/isys/isys.py
@@ -331,7 +331,7 @@ def mount(device, location, fstype = "ext2", readOnly = 0, bindMount = 0, remoun
if remount:
opts.append("remount")
- flags = "-o " + ",".join(opts)
+ flags = ",".join(opts)
log.debug("isys.py:mount()- going to mount %s on %s" %(device, location))
rc = _isys.mount(fstype, device, location, flags)