index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
-rw-r--r-- | archinstall/lib/luks.py | 1 |
diff --git a/archinstall/lib/luks.py b/archinstall/lib/luks.py index e03e26ca..7873f76b 100644 --- a/archinstall/lib/luks.py +++ b/archinstall/lib/luks.py @@ -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): |