diff options
author | Michael Scherer <misc@mageia.org> | 2011-06-17 10:59:48 +0000 |
---|---|---|
committer | Michael Scherer <misc@mageia.org> | 2011-06-17 10:59:48 +0000 |
commit | e1cdff76a3a8848fdb83db40818c8b398bdc0066 (patch) | |
tree | 236cbb8862b859776953ef19d6365d9b68882edf /modules/bind | |
parent | 39cc884087f8c86deeae0870edd6abb9ccaf2a7e (diff) | |
download | puppet-e1cdff76a3a8848fdb83db40818c8b398bdc0066.tar puppet-e1cdff76a3a8848fdb83db40818c8b398bdc0066.tar.gz puppet-e1cdff76a3a8848fdb83db40818c8b398bdc0066.tar.bz2 puppet-e1cdff76a3a8848fdb83db40818c8b398bdc0066.tar.xz puppet-e1cdff76a3a8848fdb83db40818c8b398bdc0066.zip |
fix puppetmaster warning about missing $ in prototype
Diffstat (limited to 'modules/bind')
-rw-r--r-- | modules/bind/manifests/init.pp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/bind/manifests/init.pp b/modules/bind/manifests/init.pp index 0bc9dc87..585c04fb 100644 --- a/modules/bind/manifests/init.pp +++ b/modules/bind/manifests/init.pp @@ -47,14 +47,14 @@ class bind { } } - define zone_master(content = false) { + define zone_master($content = false) { $zone_subdir = "master" zone_base { $name : content => $content } } - define zone_reverse(content = false) { + define zone_reverse($content = false) { $zone_subdir = "reverse" zone_base { $name : content => $content |