diff options
| author | Ahmed AbdelHalim <[email protected]> | 2026-01-24 16:24:28 +0100 |
|---|---|---|
| committer | Ahmed AbdelHalim <[email protected]> | 2026-01-24 16:24:28 +0100 |
| commit | ab9b04baac2970fdcea9999e2bcfd7d60d3fc23d (patch) | |
| tree | 7fcc3918e290e31309d74eb0b784fa6a00318ee3 /roles/bash/tasks/main.yml | |
| parent | 3cf08783dec1d6c5f9e2a7933e730b054d78e376 (diff) | |
Fix ansible_facts to use only bracket notation instead of dot notation
Co-authored-by: claude.ai
Diffstat (limited to 'roles/bash/tasks/main.yml')
| -rw-r--r-- | roles/bash/tasks/main.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/roles/bash/tasks/main.yml b/roles/bash/tasks/main.yml index fbecafa6..4af7dc40 100644 --- a/roles/bash/tasks/main.yml +++ b/roles/bash/tasks/main.yml @@ -14,6 +14,6 @@ modification_time: "preserve" access_time: "preserve" loop: - - "{{ ansible_facts['env'].HOME }}/.bashrc" - - "{{ ansible_facts['env'].HOME }}/.bash_profile" - - "{{ ansible_facts['env'].HOME }}/.profile" + - "{{ ansible_facts['env']['HOME'] }}/.bashrc" + - "{{ ansible_facts['env']['HOME'] }}/.bash_profile" + - "{{ ansible_facts['env']['HOME'] }}/.profile" |
