ansible/playbooks/resolvconf.yml

19 lines
379 B
YAML
Raw Normal View History

2023-01-07 02:25:53 +01:00
#!/usr/bin/env ansible-playbook
---
- hosts:
- vm_network
- pve_network
vars:
resolvconf__nameservers:
2023-04-08 00:54:33 +02:00
- 2a09:6840:128::10:103
2023-01-07 02:25:53 +01:00
- 2a09:6840:128::10:3
2023-04-08 00:54:33 +02:00
- 10.128.10.103
2023-01-07 02:25:53 +01:00
- 10.128.10.3
resolvconf__domain: auro.re.
resolvconf__search:
- "{{ inventory_hostname | remove_domain_suffix }}"
- auro.re.
roles:
- resolvconf
...