You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
270 B

  1. ---
  2. - name: restart docker
  3. command: /bin/true
  4. notify:
  5. - reload systemd
  6. - reload docker
  7. - name : reload systemd
  8. shell: systemctl daemon-reload
  9. when: ansible_service_mgr == "systemd"
  10. - name: reload docker
  11. service:
  12. name: docker
  13. state: restarted