From c83a5a71d3aa020d6142d1965291aba7c056faa9 Mon Sep 17 00:00:00 2001 From: User Ansible Date: Sun, 23 Mar 2025 12:45:04 +0100 Subject: [PATCH] ahora soporta distintos OSes --- update_dns_records.yaml | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/update_dns_records.yaml b/update_dns_records.yaml index 392a0e3..3d1192a 100644 --- a/update_dns_records.yaml +++ b/update_dns_records.yaml @@ -5,11 +5,23 @@ remote_user: root tasks: - - name: "Copiar unbound.conf" + - name: "Copiar unbound.conf (para Debians)" copy: src: /home/ansible/ansible/unbound.conf dest: /etc/unbound/unbound.conf - - name: "Reiniciar unbound" + when: ansible_facts['os_family'] == "Debian" + - name: "Copiar unbound.conf (para FreeBSDs)" + copy: + src: /home/ansible/ansible/unbound.conf + dest: /usr/local/etc/unbound/unbound.conf + when: ansible_facts['os_family'] == "FreeBSD" + - name: "Reiniciar unbound (Debian)" systemd_service: name: unbound state: restarted + when: ansible_facts['os_family'] == "Debian" + - name: "Reiniciar unbound (FreeBSD)" + service: + name: unbound + state: restarted + when: ansible_facts['os_family'] == "FreeBSD"