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@hvornum.se>2022-05-29 13:59:25 +0200
committerGitHub <noreply@github.com>2022-05-29 13:59:25 +0200
commitc75e6a1da3c243126eaf59ee12f0b2464449e5e2 (patch)
tree18c34eb348191ea2ee8524c1d7eba79676797d6f /archinstall
parent7dbea73514b35cbaa18c156895bf6f416b2345ca (diff)
Made sure generate-encryption-key-file is set for supplementary partitions to / (#1281)
Diffstat (limited to 'archinstall')
-rw-r--r--archinstall/lib/installer.py4
-rw-r--r--archinstall/lib/menu/global_menu.py5
2 files changed, 7 insertions, 2 deletions
diff --git a/archinstall/lib/installer.py b/archinstall/lib/installer.py
index 7e66559f..bf296c2e 100644
--- a/archinstall/lib/installer.py
+++ b/archinstall/lib/installer.py
@@ -253,8 +253,8 @@ class Installer:
# note that we DON'T auto_unmount (i.e. close the encrypted device so it can be used
with (luks_handle := luks2(partition['device_instance'], loopdev, password, auto_unmount=False)) as unlocked_device:
- if partition.get('generate-encryption-key-file',False) and not self._has_root(partition):
- list_luks_handles.append([luks_handle,partition,password])
+ if partition.get('generate-encryption-key-file', False) and not self._has_root(partition):
+ list_luks_handles.append([luks_handle, partition, password])
# this way all the requesrs will be to the dm_crypt device and not to the physical partition
partition['device_instance'] = unlocked_device
diff --git a/archinstall/lib/menu/global_menu.py b/archinstall/lib/menu/global_menu.py
index a758d8c6..cb61168d 100644
--- a/archinstall/lib/menu/global_menu.py
+++ b/archinstall/lib/menu/global_menu.py
@@ -215,6 +215,11 @@ class GlobalMenu(GeneralMenu):
partition['encrypted'] = True
partition['!password'] = storage['arguments']['!encryption-password']
+ # We make sure generate-encryption-key-file is set on additional partitions
+ # other than the root partition. Otherwise they won't unlock properly #1279
+ if partition['mountpoint'] != '/':
+ partition['generate-encryption-key-file'] = True
+
def _install_text(self):
missing = len(self._missing_configs())
if missing > 0: