From c2ddf726efae46b01ec07f2acad783aa86271e60 Mon Sep 17 00:00:00 2001 From: Anton Hvornum Date: Wed, 9 Feb 2022 17:17:54 +0100 Subject: [PATCH] Changing debug information --- archinstall/lib/disk/filesystem.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/archinstall/lib/disk/filesystem.py b/archinstall/lib/disk/filesystem.py index f0208a8d..911661bd 100644 --- a/archinstall/lib/disk/filesystem.py +++ b/archinstall/lib/disk/filesystem.py @@ -123,6 +123,7 @@ class Filesystem: else: loopdev = f"{storage.get('ENC_IDENTIFIER', 'ai')}{pathlib.Path(partition['device_instance'].path).name}" + print(partition['!password']) partition['device_instance'].encrypt( password=partition['!password'], key_size=storage['arguments']['crypt_key_size'], @@ -130,7 +131,6 @@ class Filesystem: iter_time=storage['arguments']['crypt_iter_time'] ) # Immediately unlock the encrypted device to format the inner volume - print(partition['!password']) with luks2(partition['device_instance'], loopdev, partition['!password'], auto_unmount=True) as unlocked_device: if not partition.get('wipe'): if storage['arguments']['silent']: