Merge "Moved the server class settings out of the eavesdrop class"
This commit is contained in:
commit
9953ddf035
@ -288,10 +288,14 @@ node 'planet.openstack.org' {
|
|||||||
|
|
||||||
# Node-OS: precise
|
# Node-OS: precise
|
||||||
node 'eavesdrop.openstack.org' {
|
node 'eavesdrop.openstack.org' {
|
||||||
|
class { 'openstack_project::server':
|
||||||
|
iptables_public_tcp_ports => [80],
|
||||||
|
sysadmins => hiera('sysadmins', []),
|
||||||
|
}
|
||||||
|
|
||||||
class { 'openstack_project::eavesdrop':
|
class { 'openstack_project::eavesdrop':
|
||||||
project_config_repo => 'https://git.openstack.org/openstack-infra/project-config',
|
project_config_repo => 'https://git.openstack.org/openstack-infra/project-config',
|
||||||
nickpass => hiera('openstack_meetbot_password', 'XXX'),
|
nickpass => hiera('openstack_meetbot_password', 'XXX'),
|
||||||
sysadmins => hiera('sysadmins', []),
|
|
||||||
statusbot_nick => hiera('statusbot_nick', 'username'),
|
statusbot_nick => hiera('statusbot_nick', 'username'),
|
||||||
statusbot_password => hiera('statusbot_nick_password', 'XXX'),
|
statusbot_password => hiera('statusbot_nick_password', 'XXX'),
|
||||||
statusbot_server => 'chat.freenode.net',
|
statusbot_server => 'chat.freenode.net',
|
||||||
|
@ -2,7 +2,6 @@
|
|||||||
|
|
||||||
class openstack_project::eavesdrop (
|
class openstack_project::eavesdrop (
|
||||||
$nickpass = '',
|
$nickpass = '',
|
||||||
$sysadmins = [],
|
|
||||||
$statusbot_nick = '',
|
$statusbot_nick = '',
|
||||||
$statusbot_password = '',
|
$statusbot_password = '',
|
||||||
$statusbot_server = '',
|
$statusbot_server = '',
|
||||||
@ -16,10 +15,6 @@ class openstack_project::eavesdrop (
|
|||||||
$accessbot_password = '',
|
$accessbot_password = '',
|
||||||
$project_config_repo = '',
|
$project_config_repo = '',
|
||||||
) {
|
) {
|
||||||
class { 'openstack_project::server':
|
|
||||||
iptables_public_tcp_ports => [80],
|
|
||||||
sysadmins => $sysadmins
|
|
||||||
}
|
|
||||||
include apache
|
include apache
|
||||||
include meetbot
|
include meetbot
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user