index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Daniel Girtler <blackrabbit256@gmail.com> | 2022-11-16 00:34:24 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-15 14:34:24 +0100 |
commit | 9718c64ca7b8002daaa20dc2cbdcffd760b17b0d (patch) | |
tree | aaaad1d232daabd60d2d2b43604e9e6844a0441e /archinstall/lib/configuration.py | |
parent | e05df22986d2adbe9041be91884f8bb577a330a1 (diff) |
-rw-r--r-- | archinstall/lib/configuration.py | 2 |
diff --git a/archinstall/lib/configuration.py b/archinstall/lib/configuration.py index ce782f6c..ad537b21 100644 --- a/archinstall/lib/configuration.py +++ b/archinstall/lib/configuration.py @@ -15,7 +15,7 @@ from .exceptions import RequirementError def configuration_sanity_check(): disk_encryption: DiskEncryption = storage['arguments'].get('disk_encryption') - if disk_encryption.hsm_device: + if disk_encryption is not None and disk_encryption.hsm_device: if not Fido2.get_fido2_devices(): raise RequirementError( f"In order to use HSM to pair with the disk encryption," |