From: Stephen Gran Date: Sat, 28 Feb 2009 23:56:33 +0000 (+0000) Subject: Arg. lenny release with a puppet that can't do complex conditionals. X-Git-Url: https://git.adam-barratt.org.uk/?a=commitdiff_plain;h=6ae3ef89656458f1fa082bd7d8ef83c97930ad15;p=mirror%2Fdsa-puppet.git Arg. lenny release with a puppet that can't do complex conditionals. Use case instead. Signed-off-by: Stephen Gran --- diff --git a/manifests/site.pp b/manifests/site.pp index f3a77fb11..1636b2f51 100644 --- a/manifests/site.pp +++ b/manifests/site.pp @@ -8,8 +8,9 @@ node default { include debian-org include exim - if $raidcontroller == "true" { - include debian-proliant + case $raidcontroller { + true: { include debian-proliant } + default: {} } }