initial commit

This commit is contained in:
User Ansible 2025-03-15 22:06:02 +01:00
commit f89004b2ce
2 changed files with 26 additions and 0 deletions

15
update_dns_records.yaml Normal file
View file

@ -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

11
uptime.yml Normal file
View file

@ -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 }}"