Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Hvornum <anton@hvornum.se>2021-03-29 18:12:05 +0200
committerAnton Hvornum <anton@hvornum.se>2021-03-29 18:12:05 +0200
commit151c90a56d2dbf4daa7edb5545d25e2484df08f7 (patch)
tree4fd331a696879f16e4d49f1c4d0b1e21049d797c
parenta50aa59060591a121a7b58e58487b6a2840825f3 (diff)
Added some debugging.
-rw-r--r--archinstall/lib/disk.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/archinstall/lib/disk.py b/archinstall/lib/disk.py
index 9ad49ac2..0425321d 100644
--- a/archinstall/lib/disk.py
+++ b/archinstall/lib/disk.py
@@ -322,6 +322,8 @@ class Partition():
else:
raise UnknownFilesystemFormat(f"Fileformat '{filesystem}' is not yet implemented.")
+ print('Checking if encrypted:', path)
+ print('Also checking:', self.real_device)
if get_filesystem_type(path) == 'crypto_LUKS' or get_filesystem_type(self.real_device) == 'crypto_LUKS':
self.encrypted = True
else: