1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-02-13 11:42:08 +00:00
iiab/roles/network/tasks/down-debian.yml
2020-02-17 13:08:41 -05:00

25 lines
580 B
YAML

# down-debian.yml
#- name: Supply resolvconf.conf
# template:
# dest: /etc/resolvconf.conf
# src: network/resolvconf.j2
- name: BIND may be affected
systemd:
name: "{{ dns_service }}"
state: stopped
when: named_install and dnsmasq_enabled
# dhcpd_server release the interface
- name: dhcpd_server may be affected - stopping dhcpd
systemd:
name: dhcpd
state: stopped
when: dhcpd_install | bool
- name: dhcpd_server may be affected - stopping dnsmasq
systemd:
name: dnsmasq
state: stopped
when: dnsmasq_install and not no_net_restart