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