From 803e5996e2585802126d685475907c8f4231ee43 Mon Sep 17 00:00:00 2001 From: Stephen Gran Date: Fri, 4 Feb 2011 16:48:22 +0000 Subject: [PATCH] these are strings, not real booleans, apparently Signed-off-by: Stephen Gran --- manifests/site.pp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/manifests/site.pp b/manifests/site.pp index 5e57615aa..376bb399a 100644 --- a/manifests/site.pp +++ b/manifests/site.pp @@ -62,21 +62,21 @@ node default { } case extractnodeinfo($nodeinfo, 'muninmaster') { - true: { include munin-node::master } + "true": { include munin-node::master } } case extractnodeinfo($nodeinfo, 'nagiosmaster') { - true: { include nagios::server } + "true": { include nagios::server } default: { include nagios::client } } case $apache2 { "true": { case extractnodeinfo($nodeinfo, 'apache2_security_mirror') { - true: { include apache2::security_mirror } + "true": { include apache2::security_mirror } } case extractnodeinfo($nodeinfo, 'apache2_www_mirror') { - true: { include apache2::www_mirror } + "true": { include apache2::www_mirror } } include apache2 } -- 2.20.1