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 14:00:30 +0100
committerAnton Hvornum <anton.feeds@gmail.com>2021-03-09 14:00:30 +0100
commitcf21b477640ec284f1355140694d22a2c9a21ac3 (patch)
tree768aaf071b4ce17843095c6b05d612fcb98778d7 /archinstall/lib/luks.py
parent3e9031821aa3bb6f85ce33405cf65aa2003d42d1 (diff)
Carried over the allow_formatting from the parent device of luks2() devices.
Diffstat (limited to 'archinstall/lib/luks.py')
-rw-r--r--archinstall/lib/luks.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/archinstall/lib/luks.py b/archinstall/lib/luks.py
index 7873f76b..e54641b8 100644
--- a/archinstall/lib/luks.py
+++ b/archinstall/lib/luks.py
@@ -84,7 +84,9 @@ class luks2():
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)
+ unlocked_partition = Partition(self.mapdev, encrypted=True, filesystem=get_filesystem_type(self.mapdev), autodetect_filesystem=False)
+ unlocked_partition.allow_formatting = self.partition.allow_formatting
+ return unlocked_partition
def close(self, mountpoint=None):
if not mountpoint: