From abe78c986a02d75f0fa291f4a9a26faff42ebfdb Mon Sep 17 00:00:00 2001 From: "Trez.One" Date: Sun, 31 Aug 2025 19:08:47 -0400 Subject: [PATCH] .... --- tar-valon_config_deploy.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tar-valon_config_deploy.yml b/tar-valon_config_deploy.yml index 4590804..986e9ef 100644 --- a/tar-valon_config_deploy.yml +++ b/tar-valon_config_deploy.yml @@ -18,7 +18,7 @@ register: host_files delegate_to: localhost run_once: true - changed_when: false # ensures this task never shows as "changed" + changed_when: false - name: Build list of unique destination directories ansible.builtin.set_fact: @@ -28,11 +28,11 @@ | map(attribute='path') | map('relpath', template_base_path ~ '/' ~ inventory_hostname) | map('dirname') - | map('community.general.path_join', appdata_base_path) + | map('regex_replace', '^(.*)$', appdata_base_path ~ '/\1') | unique | list }} - changed_when: false # computing vars does not constitute a change + changed_when: false tasks: - name: Ensure destination directories exist (unique set)