* morituri/common/program.py:
* morituri/rip/offset.py: When finding the offset, also load and possibly unmount, resolving to the real path for the device.
This commit is contained in:
@@ -189,7 +189,11 @@ class Program(log.Loggable):
|
||||
"""
|
||||
Unmount the given device if it is mounted, as happens with automounted
|
||||
data tracks.
|
||||
|
||||
If the given device is a symlink, the target will be checked.
|
||||
"""
|
||||
device = os.path.realpath(device)
|
||||
self.debug('possibly unmount real path %r' % device)
|
||||
proc = open('/proc/mounts').read()
|
||||
if device in proc:
|
||||
print 'Device %s is mounted, unmounting' % device
|
||||
|
||||
Reference in New Issue
Block a user