mirror of
https://pagure.io/fedora-infra/ansible.git
synced 2026-03-20 03:57:02 +08:00
57 lines
1.2 KiB
YAML
57 lines
1.2 KiB
YAML
########################################
|
|
# Handlers for restarting services
|
|
#
|
|
|
|
- name: restart auditd
|
|
action: service name=auditd state=restarted
|
|
|
|
- name: restart collectd
|
|
action: service name=collectd state=restarted
|
|
|
|
- name: restart crond
|
|
action: service name=crond state=restarted
|
|
|
|
- name: restart httpd
|
|
action: service name=httpd state=restarted
|
|
|
|
- name: restart iptables
|
|
action: service name=iptables state=restarted
|
|
|
|
- name: restart named
|
|
action: service name=named state=restarted
|
|
|
|
- name: restart nfs
|
|
action: service name=nfs state=restarted
|
|
|
|
- name: restart nfslock
|
|
action: service name=nfslock state=restarted
|
|
|
|
- name: restart nrpe
|
|
action: service name=nrpe state=restarted
|
|
|
|
- name: restart ntpd
|
|
action: service name=ntpd state=restarted
|
|
|
|
- name: restart openvpn
|
|
action: service name=openvpn state=restarted
|
|
|
|
- name: restart postfix
|
|
action: service name=postfix state=restarted
|
|
|
|
- name: restart rpcbind
|
|
action: service name=rpcbind state=restarted
|
|
|
|
- name: restart rpcidmapd
|
|
action: service name=rpcidmapd state=restarted
|
|
|
|
- name: restart rsyslog
|
|
action: service name=rsyslog state=restarted
|
|
|
|
- name: restart sshd
|
|
action: service name=sshd state=restarted
|
|
|
|
- name: restart xinetd
|
|
action: service name=xinetd state=restarted
|
|
|
|
|