Welcome to mirror list, hosted at ThFree Co, Russian Federation.

main.yml « handlers « common « roles « lamp_simple - github.com/ansible/ansible-examples.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d528615793396be07fa1fe560a7a239f0ca78d5f (plain)
1
2
3
4
5
6
7
8
9
---
# Handler to handle common notifications. Handlers are called by other plays.
# See http://docs.ansible.com/playbooks_intro.html for more information about handlers.

- name: restart ntp
  service: name=ntpd state=restarted

- name: restart iptables
  service: name=iptables state=restarted