We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e3632ab commit 29ca82fCopy full SHA for 29ca82f
playbooks/pre_cloud.yaml
@@ -19,15 +19,15 @@
19
20
- name: Create local binary dir
21
ansible.builtin.file:
22
- path: "~/.local/bin"
+ path: "{{ ansible_user_dir}}/.local/bin"
23
state: directory
24
recurse: true
25
26
- name: Install Sonobuoy
27
ansible.builtin.shell:
28
curl -L {{ sonobuoy_tar_gz_url | trim | quote }} | tar xz sonobuoy
29
args:
30
- chdir: "~/.local/bin/"
+ chdir: "{{ ansible_user_dir}}/.local/bin/"
31
creates: sonobuoy
32
when: kaas | bool
33
0 commit comments