Ship ssl certs for i18n and l10n.d.o
[mirror/dsa-puppet.git] / modules / roles / manifests / init.pp
index fb46df7..c36e2d2 100644 (file)
@@ -104,6 +104,13 @@ class roles {
                include roles::www_master
        }
 
+       if has_role('cgi.d.o') {
+               ssl::service { 'cgi.debian.org':
+                       notify => Service['apache2'],
+                       key => true,
+               }
+       }
+
        if has_role('keyring') {
                include roles::keyring
        }
@@ -190,10 +197,6 @@ class roles {
                include roles::buildd_master
        }
 
-       if has_role('buildd_ports_master') {
-               include roles::buildd_ports_master
-       }
-
        if has_role('piuparts') {
                include roles::piuparts
        }
@@ -280,4 +283,33 @@ class roles {
                        notify => Service['apache2'],
                }
        }
+
+       if has_role('httpredir') {
+               include roles::httpredir
+       }
+
+       if has_role('debtags') {
+               include roles::debtags
+       }
+
+       if has_role('planet_search') {
+               ssl::service { 'planet-search.debian.org':
+                       notify => Service['apache2'],
+                       key => true,
+               }
+       }
+
+       if has_role('i18n.d.o') {
+               ssl::service { 'i18n.debian.org':
+                       notify => Service['apache2'],
+                       key => true,
+               }
+       }
+
+       if has_role('l10n.d.o') {
+               ssl::service { 'l10n.debian.org':
+                       notify => Service['apache2'],
+                       key => true,
+               }
+       }
 }