summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2023-06-06 22:16:56 +0200
committerHugo Hörnquist <hugo@lysator.liu.se>2023-06-06 22:16:56 +0200
commit4dbc8725bcb6bdc7b7715d15a43fb6b11d75edc8 (patch)
tree79346fbd6815ceb0ff9895000fea8a75166f8993
parentwork. (diff)
downloaddns-4dbc8725bcb6bdc7b7715d15a43fb6b11d75edc8.tar.gz
dns-4dbc8725bcb6bdc7b7715d15a43fb6b11d75edc8.tar.xz
Remove now unused templates.
-rw-r--r--templates/zone-serial.epp3
-rw-r--r--templates/zone1.epp15
-rw-r--r--templates/zone2.epp14
3 files changed, 0 insertions, 32 deletions
diff --git a/templates/zone-serial.epp b/templates/zone-serial.epp
deleted file mode 100644
index ba8ded9..0000000
--- a/templates/zone-serial.epp
+++ /dev/null
@@ -1,3 +0,0 @@
-<%- | Integer[0,4294967295] $serial,
- | -%>
- <%= $serial %> ; Serial
diff --git a/templates/zone1.epp b/templates/zone1.epp
deleted file mode 100644
index 289fc2d..0000000
--- a/templates/zone1.epp
+++ /dev/null
@@ -1,15 +0,0 @@
-<%- | String $zone,
- String $mname,
- String $rname,
- Dns::Ttl $default_ttl,
- Optional[Dns::Ttl] $soa_ttl,
- | -%>
-<%#
-First half of the Zonefile's header, up until the serial field.
--%>
-; File managed by Puppet.
-; Local changes WILL be overwritten!
-$ORIGIN <%= $zone %>
-$TTL <%= $default_ttl %>
-
-@ <%= $soa_ttl %> IN SOA <%= $mname %> <%= $rname %> (
diff --git a/templates/zone2.epp b/templates/zone2.epp
deleted file mode 100644
index 0663466..0000000
--- a/templates/zone2.epp
+++ /dev/null
@@ -1,14 +0,0 @@
-<%- | Dns::Ttl $refresh,
- Dns::Ttl $retry,
- Dns::Ttl $expire,
- Dns::Ttl $negative_ttl,
- | -%>
-<%#
-Second half of the Zonefile's header. Everything after the serial
-fiel.d
--%>
- <%= $refresh %> ; Refresh
- <%= $retry %> ; Retry
- <%= $expire %> ; Expire
- <%= $negative_ttl %> ; Negative TTL
- )