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