Initial commit, squashed
This commit is contained in:
commit
158e8740b8
83 changed files with 2718 additions and 0 deletions
21
roles/exit/handlers/main.yml
Normal file
21
roles/exit/handlers/main.yml
Normal file
|
@ -0,0 +1,21 @@
|
|||
- name: reload frr
|
||||
command:
|
||||
cmd: /usr/lib/frr/frr-reload
|
||||
when: "'handler' not in ansible_skip_tags"
|
||||
|
||||
- name: reload interfaces
|
||||
command:
|
||||
cmd: ifreload -a
|
||||
when: "'handler' not in ansible_skip_tags"
|
||||
|
||||
- name: restart keepalived
|
||||
service: name=keepalived state=restarted
|
||||
when: "'handler' not in ansible_skip_tags"
|
||||
|
||||
- name: restart radvd
|
||||
service: name=radvd state=restarted
|
||||
when: "'handler' not in ansible_skip_tags"
|
||||
|
||||
- name: reload systemd
|
||||
systemd: daemon_reload=yes
|
||||
when: "'handler' not in ansible_skip_tags"
|
Loading…
Add table
Add a link
Reference in a new issue