Try to use booleans instead of strings - this can't possibly go wrong
[mirror/dsa-puppet.git] / manifests / site.pp
1 Package {
2     require => File["/etc/apt/apt.conf.d/local-recommends"]
3 }
4
5 node default {
6     include munin-node
7     include samhain
8     include debian-org
9
10     if $smartarraycontroller {
11         include debian-proliant
12     }
13     case $mta {
14         "exim4":   { include exim }
15         default:   {}
16     }
17 }
18