161906647b
Upstream deprecated "skip:" in preference of errors="ignore" [1].
Update playbooks to silence deprecation warning
[1] e17a2b502d
Change-Id: I72284f6ca8aaaa1ba5f94ad8e654d1b337ae762f
30 lines
588 B
YAML
30 lines
588 B
YAML
- name: Include OS-specific tasks
|
|
include_tasks: "{{ item }}"
|
|
vars:
|
|
params:
|
|
files: "{{ distro_lookup_path }}"
|
|
loop: "{{ query('first_found', params, errors='ignore') }}"
|
|
|
|
- name: Install unbound
|
|
package:
|
|
state: present
|
|
name: unbound
|
|
|
|
- name: Write dhclient config files
|
|
include_tasks: dhclient.yaml
|
|
loop:
|
|
- /etc/dhcp/dhclient.conf
|
|
- /etc/dhcp/dhclient-eth0.conf
|
|
|
|
- name: Write resolv.conf
|
|
copy:
|
|
src: resolv.conf
|
|
dest: /etc/resolv.conf
|
|
mode: 0444
|
|
|
|
- name: Enable unbound
|
|
service:
|
|
name: unbound
|
|
enabled: true
|
|
state: started
|