X-Git-Url: https://git.adam-barratt.org.uk/?a=blobdiff_plain;f=manifests%2Fsite.pp;h=6ff112d29e7ff5a4f0df9cc5d2fe72082ed7ddb7;hb=bbf8aadcd2aff8046291fab31625dfb6c68a474b;hp=593be680be55db2c9dfe30b20012faf539f6ee2f;hpb=103e56b48752f77fd66edd1824d82946570ca033;p=mirror%2Fdsa-puppet.git diff --git a/manifests/site.pp b/manifests/site.pp index 593be680b..6ff112d29 100644 --- a/manifests/site.pp +++ b/manifests/site.pp @@ -19,89 +19,65 @@ Service { } node default { - include site - include munin - include syslog-ng - include sudo - include ssh - include debian-org - include monit - include ntp - include ntpdate - include ssl - include motd - include hardware - include nagios::client - include resolv - include roles - - if $::hostname in [pasquini,tristano] { - include ganeti2 + # we really should rename this one + include deprecated + include base + + # this is magic: it will include whatever classes says we should + # include, based on the value of the "classes" array + hiera_include('classes') + + include roles::pubsub::client + class { 'roles::udldap::client': + ensure => absent } - if $::kernel == Linux { - include linux - } elsif $::kernel == 'GNU/kFreeBSD' { - include kfreebsd + if getfromhash($deprecated::nodeinfo, 'ganeti') { + include ganeti2 } - if $::kvmdomain { + if $::kernel == 'Linux' { + include linux include acpi } if $::mta == 'exim4' { - if getfromhash($site::nodeinfo, 'heavy_exim') { + if getfromhash($deprecated::nodeinfo, 'heavy_exim') { include exim::mx } else { include exim } - } else { + } elsif $::mta == 'postfix' { include postfix + } else { + include exim } - include unbound - if $::apache2 { include apache2 } - if $::rsyncd { - include rsyncd-log - } - - if $::hostname in [ravel,senfl,orff,draghi,diamond] { - include named::authoritative - } elsif $::hostname in [geo1,geo2,geo3] { - include named::geodns - } - - if $::hostname in [diabelli,nono,spohr] { - include dacs - } - - if $::hostname in [beethoven,duarte,spohr,stabile] { - include nfs-server + if $::hostname in [buxtehude,milanollo,lw01,lw02,lw03,lw04,lw09,lw10,senfter,gretchaninov,sibelius] { + include nfs_server } if $::brokenhosts { include hosts } - if $::portforwarder_user_exists { - include portforwarder + if $::samhain { + include samhain } - include samhain - - if $::hostname in [chopin,geo3,soler,wieck] { - include debian-org::radvd - } - - if ($::postgres84 or $::postgres90) { - include postgres + if $::hostname in [geo3,wieck] { + include debian_org::radvd } if $::spamd { munin::check { 'spamassassin': } } + + if $::hostname == 'pkgmirror-csail' { + include varnish_pkgmirror + } }