X-Git-Url: https://git.adam-barratt.org.uk/?a=blobdiff_plain;f=manifests%2Fsite.pp;h=08f6c850de0fa640abe55bdc00f67ba8909bd685;hb=bfa03605b82ed275ee8678c64769c85fe5b62c37;hp=47b8c7e8557da456935a81f5abd3cbf16cf7c045;hpb=ba4dff5433a1aa3d1ddb8fb37484f39b1617b6b7;p=mirror%2Fdsa-puppet.git diff --git a/manifests/site.pp b/manifests/site.pp index 47b8c7e85..08f6c850d 100644 --- a/manifests/site.pp +++ b/manifests/site.pp @@ -2,15 +2,34 @@ Package { require => File["/etc/apt/apt.conf.d/local-recommends"] } +File { + owner => root, + group => root, + mode => 444, + ensure => file, +} + node default { include munin-node include samhain include debian-org - include exim - case $raidcontroller { + case $smartarraycontroller { "true": { include debian-proliant } default: {} } + + case $mta { + "exim4": { include exim } + default: {} + } + + case $hostname { + spohr: { include nagiosclient } + default: {} + } } +node penalosa inherits default { + include hosts +}