13 lines
285 B
YAML
13 lines
285 B
YAML
|
|
########################################
|
||
|
|
# Handlers for restarting services
|
||
|
|
#
|
||
|
|
|
||
|
|
- name: restart ntpd
|
||
|
|
action: service name=ntpd state=restarted
|
||
|
|
|
||
|
|
- name: restart sshd
|
||
|
|
action: service name=sshd state=restarted
|
||
|
|
|
||
|
|
- name: restart iptables
|
||
|
|
action: service name=iptables state=restarted
|
||
|
|
|