diff options
author | Joel Andres Granados <jgranado@redhat.com> | 2008-02-20 22:13:46 +0100 |
---|---|---|
committer | Joel Andres Granados <jgranado@redhat.com> | 2008-02-20 22:13:46 +0100 |
commit | 90df780cb2b6db3d02daebd4f00c8e514f1e4dc0 (patch) | |
tree | 680132c4117363a3e09975ff1c78cfdaf85d6f10 /isys/isys.py | |
parent | bd670a65f58430de55534e2cfb7dae6214f80f24 (diff) | |
download | anaconda-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/isys.py')
-rwxr-xr-x | isys/isys.py | 2 |
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) |