having a module named site is really annoying
[mirror/dsa-puppet.git] / manifests / site.pp
index a55107b..0c178c1 100644 (file)
@@ -3,10 +3,10 @@ Package {
 }
 
 File {
-       owner   => root,
-       group   => root,
-       mode    => '0444',
-       ensure  => file,
+       owner  => root,
+       group  => root,
+       mode   => '0444',
+       ensure => file,
 }
 
 Exec {
@@ -19,27 +19,24 @@ Service {
 }
 
 node default {
+       # we really should rename this one
        include site
-       include munin
-       include syslog-ng
-       include sudo
-       include ssh
-       include debian-org
-       include monit
-       include apt-keys
-       include ntp
-       include ntpdate
-       include ssl
-       include motd
-       include hardware
-       include nagios::client
-       include resolv
-
-       if $::hostname in [finzi,fano,fasch,field] {
-               include kfreebsd
+
+       # 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 $::kvmdomain {
+       if getfromhash($site::nodeinfo, 'ganeti') {
+               include ganeti2
+       }
+
+       if $::kernel == 'Linux' {
+               include linux
                include acpi
        }
 
@@ -49,107 +46,37 @@ node default {
                } else {
                        include exim
                }
-       }
-
-       if $::lsbdistcodename != 'lenny' {
-               include unbound
-       }
-
-       if getfromhash($site::nodeinfo, 'puppetmaster') {
-               include puppetmaster
-       }
-
-       if getfromhash($site::nodeinfo, 'muninmaster') {
-               include munin::master
-       }
-
-       if getfromhash($site::nodeinfo, 'nagiosmaster') {
-               include nagios::server
-       }
-
-       if getfromhash($site::nodeinfo, 'buildd') {
-               include buildd
-       }
-
-       if $::hostname in [chopin,franck,morricone,bizet] {
-               include roles::dakmaster
-       }
-
-       if getfromhash($site::nodeinfo, 'apache2_security_mirror') {
-               include roles::security_mirror
-       }
-
-       if getfromhash($site::nodeinfo, 'apache2_www_mirror') {
-               include roles::www_mirror
-       }
-
-       if getfromhash($site::nodeinfo, 'apache2_backports_mirror') {
-               include roles::backports_mirror
-       }
-
-       if getfromhash($site::nodeinfo, 'apache2_ftp-upcoming_mirror') {
-               include roles::ftp-upcoming_mirror
+       } elsif $::mta == 'postfix' {
+               include postfix
+       } else {
+               include exim
        }
 
        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
-       } elsif $::hostname == 'liszt' {
-               include named::recursor
-       }
-
-       if $::kernel == 'Linux' {
-               include ferm
-               include ferm::per-host
-               include entropykey
-       }
-
-       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 $::vsftpd {
-               package { 'logtail':
-                       ensure => installed
-               }
-               munin::check { 'vsftpd': }
-               munin::check { 'ps_vsftpd':
-                       script => 'ps_'
-               }
+       if $::hostname == 'pkgmirror-csail' {
+               include varnish_pkgmirror
        }
 }