From 1dd54268bede758c607c5e6ad5afb50e6a243743 Mon Sep 17 00:00:00 2001 From: Sandwich Date: Wed, 11 Feb 2026 23:28:05 +0100 Subject: [PATCH] fix(luks): complete migration of partitioning_luks_tpm2_device reference The refactor in 9e7fc15 removed the partitioning_luks_tpm2_device default but missed updating the reference in the configuration role, causing an undefined variable error for all LUKS-enabled hosts. Co-Authored-By: Claude Opus 4.6 --- roles/configuration/tasks/encryption.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/configuration/tasks/encryption.yml b/roles/configuration/tasks/encryption.yml index 5000293..561e5cc 100644 --- a/roles/configuration/tasks/encryption.yml +++ b/roles/configuration/tasks/encryption.yml @@ -32,7 +32,7 @@ 'manual' ) }} - configuration_luks_tpm2_device: "{{ partitioning_luks_tpm2_device }}" + configuration_luks_tpm2_device: "{{ system_cfg.luks.tpm2.device }}" configuration_luks_tpm2_pcrs: "{{ luks_tpm2_pcrs }}" configuration_luks_keyfile_path: "/etc/cryptsetup-keys.d/{{ system_cfg.luks.mapper }}.key" changed_when: false