Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall
diff options
context:
space:
mode:
authorAnton Hvornum <anton.feeds@gmail.com>2021-03-09 13:36:47 +0100
committerAnton Hvornum <anton.feeds@gmail.com>2021-03-09 13:36:47 +0100
commit3e9031821aa3bb6f85ce33405cf65aa2003d42d1 (patch)
treefa5a7c6589edc3a36903c5449c5cc63e69d3afcd /archinstall
parent8f42a9f4ff647f84818cc01b84ba79e8256caa5f (diff)
Forgot to set a variable
Diffstat (limited to 'archinstall')
-rw-r--r--archinstall/lib/luks.py1
1 files changed, 1 insertions, 0 deletions
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):