X-Git-Url: https://git.adam-barratt.org.uk/?a=blobdiff_plain;f=modules%2Froles%2Fmanifests%2Finit.pp;h=4dcdb384d3aa72c9c49c8bb5a5b23202b885bf7c;hb=23b7b6241cf5fbe119eaa14a54fa1514be63feb6;hp=cc1d521237c6fce5a1c47372c72b1256110e9061;hpb=ff8cc81ab5960f98c852c95f0cc7b4f3ca377343;p=mirror%2Fdsa-puppet.git diff --git a/modules/roles/manifests/init.pp b/modules/roles/manifests/init.pp index cc1d52123..4dcdb384d 100644 --- a/modules/roles/manifests/init.pp +++ b/modules/roles/manifests/init.pp @@ -16,6 +16,10 @@ class roles { include buildd } + if getfromhash($site::nodeinfo, 'porterbox') { + include porterbox + } + if getfromhash($site::nodeinfo, 'bugs_mirror') { include roles::bugs_mirror } @@ -54,8 +58,12 @@ class roles { include roles::keyring } - if getfromhash($site::nodeinfo, 'apache2_ftp-upcoming_mirror') { - include roles::ftp-upcoming_mirror + if getfromhash($site::nodeinfo, 'wiki') { + include roles::wiki + } + + if getfromhash($site::nodeinfo, 'syncproxy') { + include roles::syncproxy } if getfromhash($site::nodeinfo, 'static_master') { @@ -71,4 +79,12 @@ class roles { if getfromhash($site::nodeinfo, 'weblog_provider') { include roles::weblog_provider } + + if getfromhash($site::nodeinfo, 'mailrelay') { + include roles::mailrelay + } + + if $::hostname in [ravel] { + include roles::weblog_destination + } }