--- /dev/null
+class roles::gobby {
+ include apache2
+ ssl::service { 'gobby.debian.org':
+ notify => [ Exec['service apache2 reload'], Exec['reload gobby'] ],
+ key => true,
+ tlsaport => [443, 6523],
+ }
+ file { '/etc/ssl/debian-local/other-keys/gobby.debian.org.key':
+ ensure => present,
+ mode => '0440',
+ group => 'gobby',
+ content => inline_template('<%= File.read(scope().call_function("hiera", ["paths.letsencrypt_dir"]) + "/gobby.debian.org.key") %>'),
+ links => follow,
+ notify => Exec['reload gobby'],
+ }
+ exec { 'reload gobby':
+ command => 'pkill -u gobby -HUP -x infinoted',
+ refreshonly => true,
+ }
+}
ssl::service { 'packages.qa.debian.org': notify => Exec['service apache2 reload'], key => true, }
}
- if has_role('gobby_debian_org') {
- ssl::service { 'gobby.debian.org':
- notify => [ Exec['service apache2 reload'], Exec['reload gobby'] ],
- key => true,
- tlsaport => [443, 6523],
- }
- file { '/etc/ssl/debian-local/other-keys/gobby.debian.org.key':
- ensure => present,
- mode => '0440',
- group => 'gobby',
- content => inline_template('<%= File.read(scope().call_function("hiera", ["paths.letsencrypt_dir"]) + "/gobby.debian.org.key") %>'),
- links => follow,
- notify => Exec['reload gobby'],
- }
- exec { 'reload gobby':
- command => 'pkill -u gobby -HUP -x infinoted',
- refreshonly => true,
- }
- }
-
if $::hostname in [lw01, lw02, lw03, lw04, lw09, lw10] {
include roles::snapshot
}