blob: 94c48b5f84b1ddc7fd718317b4123036d795b999 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
---
- name: reload nftables
systemd:
name: nftables.service
state: reloaded
when: not chroot
- name: restart chronyd
systemd:
name: chronyd.service
state: restarted
when: not chroot
- name: restart bird
systemd:
name: bird.service
state: restarted
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 named
systemd:
name: named.service
state: restarted
when: not chroot
- name: restart avahi-daemon
systemd:
name: avahi-daemon.service
state: restarted
when: not chroot
- name: restart tayga
systemd:
name: tayga@labitat.service
state: restarted
when: not chroot
# vim: set ts=2 sw=2 et:
|