From: Stephen Gran Date: Sun, 1 Mar 2009 00:16:18 +0000 (+0000) Subject: And for no reason that I can see, quote the value in the case statement X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=ba4dff5433a1aa3d1ddb8fb37484f39b1617b6b7;p=dsa-puppet.git And for no reason that I can see, quote the value in the case statement Signed-off-by: Stephen Gran --- diff --git a/manifests/site.pp b/manifests/site.pp index 1636b2f5..47b8c7e8 100644 --- a/manifests/site.pp +++ b/manifests/site.pp @@ -9,7 +9,7 @@ node default { include exim case $raidcontroller { - true: { include debian-proliant } + "true": { include debian-proliant } default: {} } }