summaryrefslogtreecommitdiffstats
path: root/roles/dns/templates/named.conf
diff options
context:
space:
mode:
authorMichael Gugino <mgugino@redhat.com>2017-08-29 18:34:21 -0400
committerMichael Gugino <mgugino@redhat.com>2017-08-31 10:01:26 -0400
commit0ae8e9804070a829b719b8141210f44d8d79f92c (patch)
tree74a5cb5dfeb0aa01e5d2a11780859ec97b4f59bd /roles/dns/templates/named.conf
parent7faa0c4111252a2710166cdbd027575e1cf1cb8a (diff)
downloadopenshift-0ae8e9804070a829b719b8141210f44d8d79f92c.tar.gz
openshift-0ae8e9804070a829b719b8141210f44d8d79f92c.tar.bz2
openshift-0ae8e9804070a829b719b8141210f44d8d79f92c.tar.xz
openshift-0ae8e9804070a829b719b8141210f44d8d79f92c.zip
Removed dns role
This commit removes now-unused dns role.
Diffstat (limited to 'roles/dns/templates/named.conf')
-rw-r--r--roles/dns/templates/named.conf23
1 files changed, 0 insertions, 23 deletions
diff --git a/roles/dns/templates/named.conf b/roles/dns/templates/named.conf
deleted file mode 100644
index 22c1ff935..000000000
--- a/roles/dns/templates/named.conf
+++ /dev/null
@@ -1,23 +0,0 @@
-options
-{
- directory "/var/named";
-
- allow-query { {{ ansible_default_ipv4.network }}/24; };
-
- recursion yes;
-
-{% if dns_forwarders is defined %}
- forwarders {
- {% for dns in dns_forwarders %}
- {{ dns }};
- {% endfor %}
- };
-{% endif %}
-};
-{% for zone in dns_zones %}
-
-zone "{{ zone }}" IN {
- type master;
- file "openshift-cluster.zone";
-};
-{% endfor %}