18 lines
379 B
YAML
Executable file
18 lines
379 B
YAML
Executable file
#!/usr/bin/env ansible-playbook
|
|
---
|
|
- hosts:
|
|
- vm_network
|
|
- pve_network
|
|
vars:
|
|
resolvconf__nameservers:
|
|
- 2a09:6840:128::10:103
|
|
- 2a09:6840:128::10:3
|
|
- 10.128.10.103
|
|
- 10.128.10.3
|
|
resolvconf__domain: auro.re.
|
|
resolvconf__search:
|
|
- "{{ inventory_hostname | remove_domain_suffix }}"
|
|
- auro.re.
|
|
roles:
|
|
- resolvconf
|
|
...
|