Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall/lib/luks.py
diff options
context:
space:
mode:
authorAnton Hvornum <anton.feeds@gmail.com>2021-03-09 12:16:40 +0100
committerAnton Hvornum <anton.feeds@gmail.com>2021-03-09 12:16:40 +0100
commit8f42a9f4ff647f84818cc01b84ba79e8256caa5f (patch)
tree531762e93fb2dcbb88a0b2a1b8eb2a5f4df94e62 /archinstall/lib/luks.py
parent585e0f4b869c270ec0482d628033463af74516a7 (diff)
Added option to skip autodetection of filesystem. This is so for instance luks2() can override any auto-detection that revers back to the parent device of the mapped device, which would be crypto_LUKS instead of None for the inner partition.
Diffstat (limited to 'archinstall/lib/luks.py')
-rw-r--r--archinstall/lib/luks.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/archinstall/lib/luks.py b/archinstall/lib/luks.py
index 706a8bd9..e03e26ca 100644
--- a/archinstall/lib/luks.py
+++ b/archinstall/lib/luks.py
@@ -83,10 +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}'
- inner_fs = get_filesystem_type(self.mapdev)
- print('Inner FS:', inner_fs)
- return Partition(self.mapdev, encrypted=True, filesystem=inner_fs)
+ return Partition(self.mapdev, encrypted=True, filesystem=get_filesystem_type(self.mapdev), autodetect_filesystem=False)
def close(self, mountpoint=None):
if not mountpoint: