blob: ee26d5353c2757ec6269104d8fcb54b9bd312157 (
plain) (
tree)
|
|
---
- name: reload nftables
systemd:
name: nftables.service
state: reloaded
when: not chroot
- name: restart blackhole
systemd:
name: blackhole.service
state: restarted
when: not chroot
- name: restart sshd
systemd:
name: sshd.service
state: restarted
when: not chroot
- name: restart bird
systemd:
name: '{{ item }}.service'
state: restarted
with_items:
- bird
- bird6
when: not chroot
- name: restart dhcpd
systemd:
name: dhcpd.service
state: restarted
when: not chroot
- name: restart radvd
systemd:
name: radvd.service
state: restarted
when: not chroot
- name: restart radiusd
systemd:
name: radiusd.service
state: restarted
when: not chroot
- name: restart getusers
systemd:
name: getusers.timer
state: restarted
daemon_reload: yes
when: not chroot
- name: restart unbound
systemd:
name: unbound.service
state: restarted
when: not chroot
- name: restart avahi-daemon
systemd:
name: avahi-daemon.service
state: restarted
when: not chroot
# vim: set ts=2 sw=2 et:
|