From f89004b2ce1e2ce90ac3c5e64946e21155cef7d0 Mon Sep 17 00:00:00 2001 From: User Ansible Date: Sat, 15 Mar 2025 22:06:02 +0100 Subject: [PATCH] initial commit --- update_dns_records.yaml | 15 +++++++++++++++ uptime.yml | 11 +++++++++++ 2 files changed, 26 insertions(+) create mode 100644 update_dns_records.yaml create mode 100644 uptime.yml diff --git a/update_dns_records.yaml b/update_dns_records.yaml new file mode 100644 index 0000000..392a0e3 --- /dev/null +++ b/update_dns_records.yaml @@ -0,0 +1,15 @@ +# Actualiza la configuracion de Unbound con un archivo en ~/ansible/unbound.conf +--- +- name: + hosts: all + remote_user: root + + tasks: + - name: "Copiar unbound.conf" + copy: + src: /home/ansible/ansible/unbound.conf + dest: /etc/unbound/unbound.conf + - name: "Reiniciar unbound" + systemd_service: + name: unbound + state: restarted diff --git a/uptime.yml b/uptime.yml new file mode 100644 index 0000000..97c7c83 --- /dev/null +++ b/uptime.yml @@ -0,0 +1,11 @@ +# ejecuta uptime en los servers especificados +--- +- name: uptime + hosts: all + remote_user: root + + tasks: + - name: "ejecutar uptime" + command: uptime + register: uptime + - debug: msg="{{ uptime.stdout }}"