initial commit
This commit is contained in:
commit
f89004b2ce
2 changed files with 26 additions and 0 deletions
15
update_dns_records.yaml
Normal file
15
update_dns_records.yaml
Normal 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
11
uptime.yml
Normal 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 }}"
|
Loading…
Add table
Reference in a new issue