summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYour Name <you@example.com>2014-10-16 17:25:37 +0000
committerYour Name <you@example.com>2014-10-16 17:25:37 +0000
commit1852cf3b47d7e9fb70a7dc713f6862a4bb69e554 (patch)
tree9ba932e1af2cf1abeed8c37dbd55d5acf10a4d0b
parent3cac80c8b9b0458f21d93909e4a00c9b8b328a69 (diff)
downloadmorph-1852cf3b47d7e9fb70a7dc713f6862a4bb69e554.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 a320c3d8..f4c6ab92 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):