X-Git-Url: https://git.adam-barratt.org.uk/?a=blobdiff_plain;f=manifests%2Fsite.pp;h=bb8f2c2e3299dcadac3574c6839058fb990bca9c;hb=780ac895583acf302fa1e62f51aa98ff47a4cbff;hp=deeccd91c8fce036c9a48b8dcfcae94753b5e6be;hpb=58b867b10275e400ca5df35d78bf8bb21bc6713d;p=mirror%2Fdsa-puppet.git diff --git a/manifests/site.pp b/manifests/site.pp index deeccd91c..bb8f2c2e3 100644 --- a/manifests/site.pp +++ b/manifests/site.pp @@ -1,10 +1,8 @@ Package { - noop => true, require => File['/etc/apt/apt.conf.d/local-recommends'] } File { - noop => true, owner => root, group => root, mode => '0444', @@ -12,12 +10,10 @@ File { } Exec { - noop => true, path => '/usr/bin:/usr/sbin:/bin:/sbin' } Service { - noop => true, hasrestart => true, hasstatus => true, } @@ -38,7 +34,13 @@ node default { include nagios::client include resolv - if $::hostname in [finzi,fano,fasch,field] { + if $::hostname in [pasquini,tristano] { + include ganeti2 + } + + if $::kernel == Linux { + include linux + } elsif $::kernel == 'GNU/kFreeBSD' { include kfreebsd } @@ -52,6 +54,8 @@ node default { } else { include exim } + } else { + include postfix } if $::lsbdistcodename != 'lenny' { @@ -90,6 +94,18 @@ node default { include roles::backports_mirror } + if getfromhash($site::nodeinfo, 'ftp.d.o') { + include roles::ftp + } + + if getfromhash($site::nodeinfo, 'ftp.upload.d.o') { + include roles::ftp_upload + } + + if $::hostname in [bizet,morricone] { + include roles::backports_master + } + if getfromhash($site::nodeinfo, 'apache2_ftp-upcoming_mirror') { include roles::ftp-upcoming_mirror } @@ -110,12 +126,6 @@ node default { include named::recursor } - if $::kernel == 'Linux' { - include ferm - include ferm::per-host - include entropykey - } - if $::hostname in [diabelli,nono,spohr] { include dacs } @@ -146,13 +156,7 @@ node default { munin::check { 'spamassassin': } } - if $::vsftpd { - package { 'logtail': - ensure => installed - } - munin::check { 'vsftpd': } - munin::check { 'ps_vsftpd': - script => 'ps_' - } + if $::hostname in [chopin,franck,ravel] { + include vsftpd } }