X-Git-Url: https://git.adam-barratt.org.uk/?a=blobdiff_plain;f=modules%2Froles%2Fmanifests%2Finit.pp;h=fad6b087a436751f643a1ef183d5263ec6fb78dd;hb=0ef36d9ed6283709cf7b25648b12421a325b3879;hp=b837c61f0260f95324c4ff4ebd856b3606ba9d4e;hpb=6c89b952e2db008578761e06a2f2a517ce50cb4e;p=mirror%2Fdsa-puppet.git diff --git a/modules/roles/manifests/init.pp b/modules/roles/manifests/init.pp index b837c61f0..fad6b087a 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 } @@ -67,4 +71,16 @@ class roles { } 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 $::hostname in [ravel] { + include roles::weblog_destination + } }