diff options
| author | Ahmed AbdelHalim <[email protected]> | 2026-01-24 16:11:40 +0100 |
|---|---|---|
| committer | Ahmed AbdelHalim <[email protected]> | 2026-01-24 16:11:40 +0100 |
| commit | 3cf08783dec1d6c5f9e2a7933e730b054d78e376 (patch) | |
| tree | c806119725c29b3029ae5952e26c7f6dd76a64d1 /molecule/archlinux-gnome | |
| parent | 8e93a39c1557cc1f5d04f21fe9604167357554b3 (diff) | |
Fix PATH environment in testing and playbook to avoid ansible_facts
Diffstat (limited to 'molecule/archlinux-gnome')
| -rw-r--r-- | molecule/archlinux-gnome/converge.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/molecule/archlinux-gnome/converge.yml b/molecule/archlinux-gnome/converge.yml index e7e34480..cc56859d 100644 --- a/molecule/archlinux-gnome/converge.yml +++ b/molecule/archlinux-gnome/converge.yml @@ -3,7 +3,7 @@ hosts: "archlinux-gnome" gather_facts: true environment: - PATH: "{{ ansible_env.HOME }}/.local/bin:{{ ansible_env.PATH }}" + PATH: "{{ '~/.local/bin:$PATH' }}" vars: ansible_become_method: su user_public_keys: @@ -29,7 +29,7 @@ gather_facts: true remote_user: "{{ username }}" environment: - PATH: "{{ ansible_env.HOME }}/.local/bin:{{ ansible_env.PATH }}" + PATH: "{{ '~/.local/bin:$PATH' }}" vars: ansible_become_method: sudo locales: |
