diff --git a/image_creator/disk.py b/image_creator/disk.py index 38df2fdf99c7965c1c0f2613e55215df0c42201c..6cd910b2dd3db873aaf52ed8045b34790b7a8f6a 100644 --- a/image_creator/disk.py +++ b/image_creator/disk.py @@ -238,9 +238,10 @@ class DiskDevice(object): self.progressbar.goto((position * 100) // total) - def mount(self): + def mount(self, readonly=False): """Mount all disk partitions in a correct order.""" + mount = self.g.mount_ro if readonly else self.g.mount self.out.output("Mounting image...", False) mps = self.g.inspect_get_mountpoints(self.root) @@ -256,7 +257,7 @@ class DiskDevice(object): mps.sort(compare) for mp, dev in mps: try: - self.g.mount(dev, mp) + mount(dev, mp) except RuntimeError as msg: self.out.warn("%s (ignored)" % msg) self.out.success("done")