index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Anton Hvornum <anton.feeds@gmail.com> | 2021-03-09 13:36:47 +0100 |
---|---|---|
committer | Anton Hvornum <anton.feeds@gmail.com> | 2021-03-09 13:36:47 +0100 |
commit | 3e9031821aa3bb6f85ce33405cf65aa2003d42d1 (patch) | |
tree | fa5a7c6589edc3a36903c5449c5cc63e69d3afcd | |
parent | 8f42a9f4ff647f84818cc01b84ba79e8256caa5f (diff) |
-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): |