Files
ansible-role-common/templates/etc.resolv.conf.j2

10 lines
273 B
Plaintext
Raw Normal View History

2016-06-29 12:34:37 +12:00
# This file is managed by Ansible #
## DO NOT edit manually as changes will be overwritten ##
# Search Domain
2021-09-30 22:55:46 +13:00
search {{ common_domain }}
2016-06-29 12:34:37 +12:00
# Use servers configured via Ansible
2021-09-30 22:55:46 +13:00
{% for server in common_dns_servers %}
2016-06-29 12:34:37 +12:00
nameserver {{ server }}
{% endfor %}