X-Git-Url: https://git.adam-barratt.org.uk/?a=blobdiff_plain;f=modules%2Froles%2Fmanifests%2Finit.pp;h=09de1f91e1c79895c47b4d88cc45df90e2ebe425;hb=17942a3ff54d939a9cf1d2f3761fe22bb6251ea1;hp=1f2c21631e0b994988a030ad91f529f3870a72d0;hpb=0b051f15c69c25d1f7ab875b33e7d0887bfee3f2;p=mirror%2Fdsa-puppet.git diff --git a/modules/roles/manifests/init.pp b/modules/roles/manifests/init.pp index 1f2c21631..adc2795ad 100644 --- a/modules/roles/manifests/init.pp +++ b/modules/roles/manifests/init.pp @@ -1,130 +1,56 @@ +# = Class: roles +# +# Lookup role and include relevant classes for roles +# +# == Sample Usage: +# +# include roles +# class roles { - - if getfromhash($site::nodeinfo, 'puppetmaster') { - include puppetmaster - } - - if getfromhash($site::nodeinfo, 'muninmaster') { + if has_role('muninmaster') { include munin::master } - #if getfromhash($site::nodeinfo, 'nagiosmaster') { - # include nagios::server - #} - - if getfromhash($site::nodeinfo, 'buildd') { - include buildd - ssl::service { 'buildd.debian.org': - notify => Service['apache2'], - } + if has_role('nagiosmaster') { + include nagios::server } - if getfromhash($site::nodeinfo, 'porterbox') { - include porterbox + # archive.debian.org + if has_role('historical_mirror') { + include roles::historical_mirror } - if getfromhash($site::nodeinfo, 'bugs_mirror') { - include roles::bugs_mirror + # debug archive + if has_role('debug_mirror') { + include roles::debug_mirror } - if getfromhash($site::nodeinfo, 'ftp_master') { - include roles::ftp_master - include roles::dakmaster + # ftp.debian.org and its ecosystem + if has_role('debian_mirror') { + include roles::debian_mirror } - if getfromhash($site::nodeinfo, 'apache2_security_mirror') { + if has_role('security_mirror') { include roles::security_mirror } - if getfromhash($site::nodeinfo, 'apache2_www_mirror') { - include roles::www_mirror - } - - if getfromhash($site::nodeinfo, 'ftp.d.o') { - include roles::ftp - } - - if getfromhash($site::nodeinfo, 'ftp.upload.d.o') { - include roles::ftp_upload - } - - if getfromhash($site::nodeinfo, 'security_master') { - include roles::security_master - include roles::dakmaster - } - - if getfromhash($site::nodeinfo, 'www_master') { - include roles::www_master - } - - if getfromhash($site::nodeinfo, 'keyring') { - include roles::keyring - } - - if getfromhash($site::nodeinfo, 'wiki') { - include roles::wiki - } - - if getfromhash($site::nodeinfo, 'syncproxy') { - include roles::syncproxy - } - - if getfromhash($site::nodeinfo, 'static_master') { - include roles::static_master - } - - if getfromhash($site::nodeinfo, 'static_mirror') { - include roles::static_mirror - } elsif getfromhash($site::nodeinfo, 'static_source') { - include roles::static_source - } - - if getfromhash($site::nodeinfo, 'weblog_provider') { - include roles::weblog_provider - } - - if getfromhash($site::nodeinfo, 'mailrelay') { - include roles::mailrelay - } - - if getfromhash($site::nodeinfo, 'pubsub') { - include roles::pubsub - } - - if $::hostname in [ravel] { - include roles::weblog_destination - } - - if $::hostname in [soler] { - ssl::service { 'security-tracker.debian.org': - notify => Service['apache2'], - } + if has_role('postgres_backup_server') { + include postgres::backup_server } - if $::hostname in [bendel] { - ssl::service { 'lists.debian.org': - notify => Service['apache2'], - } + if $::hostname in [lw01, lw02, lw03, lw04, lw09, lw10] { + include roles::snapshot } - if $::hostname in [ullmann] { - ssl::service { 'udd.debian.org': - notify => Service['apache2'], - } + if has_role('bgp') { + include roles::bgp } - if $::hostname in [pejacevic] { - ssl::service { 'piuparts.debian.org': - notify => Service['apache2'], - } + if has_role('postgresql_server') { + include postgres::backup_source } - if $::hostname in [nono] { - ssl::service { 'nm.debian.org': - notify => Service['apache2'], - } - ssl::service { 'contributors.debian.org': - notify => Service['apache2'], - } + if $::keyring_debian_org_mirror { + include roles::keyring_debian_org_mirror } }