Merge pull request #361 from dragetd/patch-1

Avoid string-based module configuration
pull/367/head^2
Jeff Geerling 2 years ago committed by GitHub
commit 66cd55df09
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      handlers/main.yml

@ -1,5 +1,7 @@
---
- name: restart docker
service: "name=docker state={{ docker_restart_handler_state }}"
service:
name: docker
state: "{{ docker_restart_handler_state }}"
ignore_errors: "{{ ansible_check_mode }}"
when: docker_service_manage | bool

Loading…
Cancel
Save