Forgot to set a variable

This commit is contained in:
Anton Hvornum 2021-03-09 13:36:47 +01:00
parent 8f42a9f4ff
commit 3e9031821a
1 changed files with 1 additions and 0 deletions

View File

@ -83,6 +83,7 @@ class luks2():
os.path.basename(mountpoint) # TODO: Raise exception instead?
sys_command(f'/usr/bin/cryptsetup open {partition.path} {mountpoint} --key-file {os.path.abspath(key_file)} --type luks2')
if os.path.islink(f'/dev/mapper/{mountpoint}'):
self.mapdev = f'/dev/mapper/{mountpoint}'
return Partition(self.mapdev, encrypted=True, filesystem=get_filesystem_type(self.mapdev), autodetect_filesystem=False)
def close(self, mountpoint=None):