summaryrefslogtreecommitdiffstats
path: root/roles/dns/templates/named.conf
diff options
context:
space:
mode:
authorOpenShift Bot <eparis+openshiftbot@redhat.com>2017-09-01 16:59:13 -0400
committerGitHub <noreply@github.com>2017-09-01 16:59:13 -0400
commit42c508571e797f7e548753295b4bdcfb4e50f5fb (patch)
tree8639439367c4562e8215d755961953c99af7ed95 /roles/dns/templates/named.conf
parentb2ccb858cb675d7a30179d1a60e638e9e311a4d5 (diff)
parent0ae8e9804070a829b719b8141210f44d8d79f92c (diff)
downloadopenshift-42c508571e797f7e548753295b4bdcfb4e50f5fb.tar.gz
openshift-42c508571e797f7e548753295b4bdcfb4e50f5fb.tar.bz2
openshift-42c508571e797f7e548753295b4bdcfb4e50f5fb.tar.xz
openshift-42c508571e797f7e548753295b4bdcfb4e50f5fb.zip
Merge pull request #5261 from mgugino-upstream-stage/remove-dns-openshift-facts
Merged by openshift-bot
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 %}