From f826becbd8a8c3b7bfaf6973ae4464bbbc3c37a2 Mon Sep 17 00:00:00 2001 From: Simon Caron Date: Tue, 8 Nov 2022 20:59:01 -0500 Subject: [PATCH] Fix Acme Account Name Variable --- tasks/pve-acme.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/pve-acme.yml b/tasks/pve-acme.yml index 0f324c8..b195236 100644 --- a/tasks/pve-acme.yml +++ b/tasks/pve-acme.yml @@ -39,7 +39,7 @@ - name: Add ACME account configuration ansible.builtin.expect: - command: pvenode acme account register {{ pve_acme_plugin_name }} {{ pve_acme_account_email }} --directory {{ pve_acme_account_directory }} + command: pvenode acme account register {{ pve_acme_account_name }} {{ pve_acme_account_email }} --directory {{ pve_acme_account_directory }} responses: Do you agree to the above terms.*: y when: acme_account_list.stdout | length == 0