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-03-19 10:53:26 +0000
commit2a77dfb64141603179b7503ce652510be3177dcb (patch)
treec5c6ab81e3ec4805d283931b843f3c29db7e4039
parent283f6c08eeb8657a65cdec6a4f605c356130c17d (diff)
downloadmorph-2a77dfb64141603179b7503ce652510be3177dcb.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