summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Coldrick <adam.coldrick@codethink.co.uk>2015-02-03 17:40:29 +0000
committerAdam Coldrick <adam.coldrick@codethink.co.uk>2015-04-10 13:52:24 +0000
commitb217eaca34728bf886bced4aa154c527e4322a33 (patch)
treef10b39d1e667580816902ad6539640ee7b26fcd1
parent4c17ac32131afb5e986075d7c65dbe8c20df7fc4 (diff)
downloadmorph-b217eaca34728bf886bced4aa154c527e4322a33.tar.gz
Allow the passing of options to fsutils.mount
In order to mount using overlayfs, fsutils.mount needs to take a string of options to pass to the mount command.
-rw-r--r--morphlib/fsutils.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/morphlib/fsutils.py b/morphlib/fsutils.py
index a3b73bf6..87b4cf3b 100644
--- a/morphlib/fsutils.py
+++ b/morphlib/fsutils.py
@@ -46,14 +46,17 @@ def create_fs(runcmd, partition): # pragma: no cover
runcmd(['mkfs.btrfs', '-L', 'baserock', partition])
-def mount(runcmd, partition, mount_point, fstype=None): # pragma: no cover
+def mount(runcmd, partition, mount_point,
+ fstype=None, options=[]): # pragma: no cover
if not os.path.exists(mount_point):
os.mkdir(mount_point)
if not fstype:
fstype = []
else:
fstype = ['-t', fstype]
- runcmd(['mount', partition, mount_point] + fstype)
+ if not type(options) == list:
+ options = [options]
+ runcmd(['mount', partition, mount_point] + fstype + options)
def unmount(runcmd, mount_point): # pragma: no cover