systmed-resolved configuration to avoid conflicts with zimbra-dnscache

This commit is contained in:
Romina Brown 2026-04-27 14:08:59 -03:00
parent a283e67fdd
commit 6bf441c9d4
2 changed files with 30 additions and 0 deletions

View File

@ -0,0 +1,28 @@
---
- name: Deshabilitar resolvedor local
ansible.builtin.ini_file:
path: /etc/systemd/resolved.conf
section: Resolve
option: DNSStubListener
value: "no"
register: disable_dns_stub_listener
- name: Destruir enlace simbólico
file:
path: /etc/resolv.conf
state: absent
when: disable_dns_stub_listener.changed
- name: Crear enlace simbólico
file:
path: /etc/resolv.conf
src: /run/systemd/resolve/resolv.conf
state: link
when: disable_dns_stub_listener.changed
- name: Reiniciar servicio systemd-resolved
ansible.builtin.service:
name: systemd-resolved
state: restarted
when: disable_dns_stub_listener.changed

View File

@ -28,6 +28,8 @@
when: zimbra_store == 'y'
- import_tasks: 'configure/mta.yml'
when: zimbra_mta == 'y'
- import_tasks: 'configure/dnscache.yml'
when: zimbra_dnscache == 'y'
#
# Extras configuration process