--- - name: "rsync old release in compose" ansible.builtin.shell: 'rsync -vrlptDSH --exclude="kickstart" --exclude="live" --exclude="images" --exclude="isos" --chown=10004:10005 --progress --human-readable ../latest-Rocky-9/compose/ compose' cwd: "{{ new_compose_dir }}" changed_when: 1 != 1 failed_when: "result.rc != 0" - name: "rsync old release in staging" ansible.builtin.shell: 'rsync -vrlptDSH --exclude="kickstart" --exclude="live" --exclude="images" --exclude="isos" --chown=10004:10005 --progress --human-readable {{ old_revision }}/ {{ new_revision }}' cwd: "{{ new_compose_dir }}" changed_when: 1 != 1 failed_when: "result.rc != 0" ...