Sergey Lukjanov 4b214bd4c8 Add logging to the new #openstack-sahara channel
Savanna project is now in the process of renaming to Sahara due to the
potenial trademark issues. Channel was registered and OpenStack added to
founders with all needed permissions.

Change-Id: I6183d14947e8a34d7fe8ba7a3a9669df7200512f
2014-03-10 20:20:51 +04:00

87 lines
2.1 KiB
Puppet

# Eavesdrop server
class openstack_project::eavesdrop (
$nickpass = '',
$sysadmins = [],
$statusbot_nick = '',
$statusbot_password = '',
$statusbot_server = '',
$statusbot_channels = '',
$statusbot_auth_nicks = '',
$statusbot_wiki_user = '',
$statusbot_wiki_password = '',
$statusbot_wiki_url = '',
$statusbot_wiki_pageid = '',
) {
class { 'openstack_project::server':
iptables_public_tcp_ports => [80],
sysadmins => $sysadmins
}
include apache
include meetbot
$vhost_extra = '
<Location /alert>
Header set Access-Control-Allow-Origin "*"
</Location>
'
meetbot::site { 'openstack':
nick => 'openstack',
nickpass => $nickpass,
network => 'FreeNode',
server => 'chat.freenode.net:7000',
use_ssl => 'True',
vhost_extra => $vhost_extra,
channels => [
'#heat',
'#murano',
'#openstack',
'#openstack-ceilometer',
'#openstack-climate',
'#openstack-dev',
'#openstack-dns',
'#openstack-infra',
'#openstack-ironic',
'#openstack-keystone',
'#openstack-marconi',
'#openstack-meeting',
'#openstack-meeting-alt',
'#openstack-meeting-3',
'#openstack-neutron',
'#openstack-oslo',
'#openstack-qa',
'#openstack-relmgr-office',
'#openstack-sahara',
'#openstack-sdks',
'#openstack-swift',
'#openstack-trove',
'#savanna',
'#storyboard',
'#tripleo',
],
}
class { 'statusbot':
nick => $statusbot_nick,
password => $statusbot_password,
server => $statusbot_server,
channels => $statusbot_channels,
auth_nicks => $statusbot_auth_nicks,
wiki_user => $statusbot_wiki_user,
wiki_password => $statusbot_wiki_password,
wiki_url => $statusbot_wiki_url,
wiki_pageid => $statusbot_wiki_pageid,
}
file { '/srv/meetbot-openstack/alert':
ensure => link,
target => '/var/lib/statusbot/www',
require => Class['statusbot'],
}
a2mod { 'headers':
ensure => present,
}
}