X-Git-Url: https://git.adam-barratt.org.uk/?a=blobdiff_plain;f=manifests%2Fsite.pp;h=e939261b44b6dc9547e42e1865455b3ed8effcfc;hb=c56631a320fac180d4bc296e5fe60a07634e43fb;hp=2933d23fa81c6517d7e8394c839b8d533e63bfc6;hpb=9ed89ed95202c7f1cd5afff59091b80ca2177528;p=mirror%2Fdsa-puppet.git diff --git a/manifests/site.pp b/manifests/site.pp index 2933d23fa..e939261b4 100644 --- a/manifests/site.pp +++ b/manifests/site.pp @@ -19,40 +19,20 @@ Service { } node default { - include site - include munin - include syslog_ng - include sudo - include ssh - include debian_org - include monit - include time - include ssl - include hardware - include nagios::client - include resolv - include roles - include motd - include unbound - include bacula::client - include autofs - include dsa_lvm - include grub - include multipath - include popcon - include portforwarder - include postgres - include haveged - include huge_mem - include tcp_bbr - include certregen::client + # 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 getfromhash($site::nodeinfo, 'ganeti') { + if getfromhash($deprecated::nodeinfo, 'ganeti') { include ganeti2 } @@ -61,26 +41,6 @@ node default { include acpi } - if $::mta == 'exim4' { - if getfromhash($site::nodeinfo, 'heavy_exim') { - include exim::mx - } else { - include exim - } - } elsif $::mta == 'postfix' { - include postfix - } else { - include exim - } - - if $::apache2 { - include apache2 - } - - if $::hostname in [geo1,geo2,geo3] { - include named::geodns - } - if $::hostname in [buxtehude,milanollo,lw01,lw02,lw03,lw04,lw09,lw10,senfter,gretchaninov,sibelius] { include nfs_server } @@ -104,4 +64,10 @@ node default { if $::hostname == 'pkgmirror-csail' { include varnish_pkgmirror } + + if $::apache2 { + if ! defined(Class['apache2']) { + fail('We have apache installed but no role pulled it in.') + } + } }