aboutsummaryrefslogtreecommitdiffstats
path: root/modules/bind/manifests/zone
diff options
context:
space:
mode:
authorMichael Scherer <misc@mageia.org>2012-03-20 17:30:33 +0000
committerMichael Scherer <misc@mageia.org>2012-03-20 17:30:33 +0000
commitb433b11029408072497a67a94cc4afc5852a034c (patch)
tree2641e64711e4ed76c60d38704e19af54a7e4077b /modules/bind/manifests/zone
parent47ef89f1230721a4c47a55e5e3e881ab237ffd2a (diff)
downloadpuppet-b433b11029408072497a67a94cc4afc5852a034c.tar
puppet-b433b11029408072497a67a94cc4afc5852a034c.tar.gz
puppet-b433b11029408072497a67a94cc4afc5852a034c.tar.bz2
puppet-b433b11029408072497a67a94cc4afc5852a034c.tar.xz
puppet-b433b11029408072497a67a94cc4afc5852a034c.zip
rework the layout of the bind module
Diffstat (limited to 'modules/bind/manifests/zone')
-rw-r--r--modules/bind/manifests/zone/master.pp6
-rw-r--r--modules/bind/manifests/zone/reverse.pp6
2 files changed, 12 insertions, 0 deletions
diff --git a/modules/bind/manifests/zone/master.pp b/modules/bind/manifests/zone/master.pp
new file mode 100644
index 00000000..460f52c6
--- /dev/null
+++ b/modules/bind/manifests/zone/master.pp
@@ -0,0 +1,6 @@
+define bind::zone::master($content = false) {
+ bind::zone { $name :
+ type => 'master',
+ content => $content,
+ }
+}
diff --git a/modules/bind/manifests/zone/reverse.pp b/modules/bind/manifests/zone/reverse.pp
new file mode 100644
index 00000000..400e77f9
--- /dev/null
+++ b/modules/bind/manifests/zone/reverse.pp
@@ -0,0 +1,6 @@
+define bind::zone::reverse($content = false) {
+ bind::zone { $name :
+ type => 'reverse',
+ content => $content,
+ }
+}