summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYour Name <you@example.com>2014-10-16 17:25:37 +0000
committerYour Name <you@example.com>2014-11-07 12:07:18 +0000
commite3a8b8de87d1630c378728ac4a2d4fdb5e786ff0 (patch)
tree366f6be140a0849295d06aab9b50d930b9019918
parent046dd1083f50757e0c9bb6571840d6fe97d4c3a1 (diff)
downloadmorph-e3a8b8de87d1630c378728ac4a2d4fdb5e786ff0.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 eff13dde..9beb8dd2 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):