geerlingguy.ansible-role-do.../handlers/main.yml
Michael G ff37406248
Avoid string-based module configuration
Configure module parameters as a YAML dict instead of string.
2022-06-23 07:02:31 +02:00

7 lines
147 B
YAML

---
- name: restart docker
service:
name: docker
state: "{{ docker_restart_handler_state }}"
ignore_errors: "{{ ansible_check_mode }}"