X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=modules%2Froles%2Fmanifests%2Finit.pp;h=1e27bcd9c6beae7c05ff624ce036fbf659a25e5b;hb=21e5d62634a48c6fb4ee93d58a68eb4a485984d5;hp=213f336c3920bdd3baf18ef60f11679283bdb6ed;hpb=bfc022db0e9eca3c0916e2f1abea84bbc61026a6;p=dsa-puppet.git diff --git a/modules/roles/manifests/init.pp b/modules/roles/manifests/init.pp index 213f336c..1e27bcd9 100644 --- a/modules/roles/manifests/init.pp +++ b/modules/roles/manifests/init.pp @@ -77,6 +77,10 @@ class roles { include roles::ftp_upload } + if has_role('ssh.upload.d.o') { + include roles::ssh_upload + } + if has_role('git_master') { include roles::git_master } @@ -154,9 +158,9 @@ class roles { include roles::lists } - #if has_role('list_search') { - # include roles::listsearch - #} + if has_role('list_search') { + include roles::listsearch + } if has_role('rtmaster') { include roles::rtmaster @@ -170,6 +174,10 @@ class roles { include roles::sso } + if has_role('sso_rp') { + include roles::sso_rp + } + if has_role('tracker') { include roles::tracker } @@ -202,9 +210,20 @@ class roles { include roles::rtc } + if has_role('jenkins') { + include roles::jenkins + } + if has_role('keystone') { include roles::keystone } + if has_role('keystone_rabbitmq') { + include roles::keystone::rabbitmq + } + + if has_role('memcached') { + include roles::memcached + } if has_role('postgres_backup_server') { include postgres::backup_server @@ -230,7 +249,7 @@ class roles { if has_role('gobby_debian_org') { ssl::service { 'gobby.debian.org': - tlsaport => 0, + notify => Service['apache2'], } } @@ -240,4 +259,15 @@ class roles { if has_role('search_frontend') { include search_frontend } + + if has_role('dgit_browse') { + include dgit_browse + } + if has_role('dgit_git') { + include dgit_git + } + + if $::hostname in [lw01, lw02, lw03, lw04] { + include snapshot + } }