We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 35fe393 commit 50ba030Copy full SHA for 50ba030
1 file changed
ansible/init-data-gzipper.yaml
@@ -26,15 +26,11 @@
26
dest: "{{ rendered_path }}"
27
mode: "0600"
28
29
- - name: Check if gzipped file already exists
30
- ansible.builtin.stat:
31
- path: "{{ gz_path }}"
32
- register: gz_file_stat
33
34
- name: Gzip the rendered content
35
ansible.builtin.shell: |
36
python3 gzipper.py "{{ rendered_path }}" "{{ gz_path }}"
37
- when: not gz_file_stat.stat.exists
+ changed_when: true
38
39
- name: Read gzip as base64
40
ansible.builtin.slurp:
0 commit comments