15 lines
353 B
YAML
15 lines
353 B
YAML
# 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
|