Di. 21 Mai 2019 19:07:14 CEST in /home/jens/Development/ansible/roles/tweaks on deathbolt.927589452.space
This commit is contained in:
parent
3b5dabc3aa
commit
e650f91311
19 changed files with 304 additions and 16 deletions
37
handlers/main.yml
Normal file
37
handlers/main.yml
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
---
|
||||
- name: restart local_unbound
|
||||
service:
|
||||
name: local_unbound
|
||||
state: stopped
|
||||
become: true
|
||||
notify: start local_unbound
|
||||
|
||||
- name: start local_unbound
|
||||
service:
|
||||
name: local_unbound
|
||||
state: started
|
||||
become: true
|
||||
|
||||
- name: restart dhclient
|
||||
service:
|
||||
name: dhclient
|
||||
state: stopped
|
||||
become: true
|
||||
notify: start dhclient
|
||||
|
||||
- name: start dhclient
|
||||
service:
|
||||
name: dhclient
|
||||
state: started
|
||||
become: true
|
||||
|
||||
- name: load the bt modules
|
||||
service:
|
||||
name: "{{ module }}"
|
||||
state: started
|
||||
become: true
|
||||
loop_control:
|
||||
loop_var: module
|
||||
loop:
|
||||
- sdpd
|
||||
- hpsecd
|
||||
Loading…
Add table
Add a link
Reference in a new issue