ahora soporta distintos OSes
This commit is contained in:
parent
f89004b2ce
commit
c83a5a71d3
1 changed files with 14 additions and 2 deletions
|
@ -5,11 +5,23 @@
|
||||||
remote_user: root
|
remote_user: root
|
||||||
|
|
||||||
tasks:
|
tasks:
|
||||||
- name: "Copiar unbound.conf"
|
- name: "Copiar unbound.conf (para Debians)"
|
||||||
copy:
|
copy:
|
||||||
src: /home/ansible/ansible/unbound.conf
|
src: /home/ansible/ansible/unbound.conf
|
||||||
dest: /etc/unbound/unbound.conf
|
dest: /etc/unbound/unbound.conf
|
||||||
- name: "Reiniciar unbound"
|
when: ansible_facts['os_family'] == "Debian"
|
||||||
|
- name: "Copiar unbound.conf (para FreeBSDs)"
|
||||||
|
copy:
|
||||||
|
src: /home/ansible/ansible/unbound.conf
|
||||||
|
dest: /usr/local/etc/unbound/unbound.conf
|
||||||
|
when: ansible_facts['os_family'] == "FreeBSD"
|
||||||
|
- name: "Reiniciar unbound (Debian)"
|
||||||
systemd_service:
|
systemd_service:
|
||||||
name: unbound
|
name: unbound
|
||||||
state: restarted
|
state: restarted
|
||||||
|
when: ansible_facts['os_family'] == "Debian"
|
||||||
|
- name: "Reiniciar unbound (FreeBSD)"
|
||||||
|
service:
|
||||||
|
name: unbound
|
||||||
|
state: restarted
|
||||||
|
when: ansible_facts['os_family'] == "FreeBSD"
|
||||||
|
|
Loading…
Add table
Reference in a new issue