summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPedro Alvarez <pedro.alvarez@codethink.co.uk>2014-10-16 17:25:37 +0000
committerPedro Alvarez <pedro.alvarez@codethink.co.uk>2014-11-10 10:57:38 +0000
commitc81057af3c52a760de7cc3079a4fdc8365eeb884 (patch)
treed8dd4cc435b44f8c8eee7d11e541f247a228485b
parentf3b02b4d6f069eaff3977bc061b6ab3ffb6baa8b (diff)
downloadmorph-c81057af3c52a760de7cc3079a4fdc8365eeb884.tar.gz
Disable loop mount, leave the system decide
-rw-r--r--morphlib/writeexts.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/morphlib/writeexts.py b/morphlib/writeexts.py
index 86dc4b61..ba443aff 100644
--- a/morphlib/writeexts.py
+++ b/morphlib/writeexts.py
@@ -244,7 +244,7 @@ class WriteExtension(cliapp.Application):
self.status(msg='Mounting filesystem')
tempdir = tempfile.mkdtemp()
- cliapp.runcmd(['mount', '-o', 'loop', location, tempdir])
+ cliapp.runcmd(['mount', location, tempdir])
return tempdir
def unmount(self, mount_point):