commit f89004b2ce1e2ce90ac3c5e64946e21155cef7d0 Author: User Ansible Date: Sat Mar 15 22:06:02 2025 +0100 initial commit 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 }}"