diff options
author | Michael Scherer <misc@mageia.org> | 2012-03-20 17:30:33 +0000 |
---|---|---|
committer | Michael Scherer <misc@mageia.org> | 2012-03-20 17:30:33 +0000 |
commit | b433b11029408072497a67a94cc4afc5852a034c (patch) | |
tree | 2641e64711e4ed76c60d38704e19af54a7e4077b /modules/bind/manifests/zone/master.pp | |
parent | 47ef89f1230721a4c47a55e5e3e881ab237ffd2a (diff) | |
download | puppet-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/master.pp')
-rw-r--r-- | modules/bind/manifests/zone/master.pp | 6 |
1 files changed, 6 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, + } +} |