d240073f65
Move updating resolvconf to the network restart handler to ensure changes applied to the /etc/resolv.conf. Signed-off-by: Bogdan Dobrelya <bdobrelia@mirantis.com>
21 lines
554 B
YAML
21 lines
554 B
YAML
- name: Dnsmasq | restart network
|
|
command: /bin/true
|
|
notify:
|
|
- Dnsmasq | reload network
|
|
- Dnsmasq | update resolvconf
|
|
when: ansible_os_family != "CoreOS"
|
|
|
|
- name: Dnsmasq | reload network
|
|
service:
|
|
name: >-
|
|
{% if ansible_os_family == "RedHat" -%}
|
|
network
|
|
{%- elif ansible_os_family == "Debian" -%}
|
|
networking
|
|
{%- endif %}
|
|
state: restarted
|
|
when: ansible_os_family != "RedHat" and ansible_os_family != "CoreOS"
|
|
|
|
- name: Dnsmasq | update resolvconf
|
|
command: /sbin/resolvconf -u
|
|
ignore_errors: true
|