mirror of
https://github.com/spantaleev/matrix-docker-ansible-deploy.git
synced 2026-07-19 13:06:19 +03:00
Reference: https://ansible-lint.readthedocs.io/en/latest/default_rules/#no-changed-when
8 lines
243 B
YAML
8 lines
243 B
YAML
---
|
|
|
|
- name: Run Docker System Prune
|
|
ansible.builtin.command:
|
|
cmd: "{{ matrix_host_command_docker }} system prune -a -f"
|
|
register: matrix_common_after_docker_prune_result
|
|
changed_when: matrix_common_after_docker_prune_result.rc == 0
|