f8f2915020
Once our gate-ci-puppet-lint job goes live, this will help to get it to pass. Change-Id: I2eb363038b8e63e4b17a3f80cc40dc6c6bf90bee Signed-off-by: Paul Belanger <paul.belanger@polybeacon.com> Reviewed-on: https://review.openstack.org/13722 Reviewed-by: James E. Blair <corvus@inaugust.com> Reviewed-by: Clark Boylan <clark.boylan@gmail.com> Approved: James E. Blair <corvus@inaugust.com> Tested-by: Jenkins
30 lines
627 B
Puppet
30 lines
627 B
Puppet
class openstack_project::etherpad (
|
|
$etherpad_crt,
|
|
$etherpad_key,
|
|
$database_password,
|
|
$sysadmins = []
|
|
) {
|
|
class { 'openstack_project::server':
|
|
iptables_public_tcp_ports => [22, 80, 443],
|
|
sysadmins => $sysadmins
|
|
}
|
|
|
|
include etherpad_lite
|
|
include etherpad_lite::backup
|
|
|
|
class { 'etherpad_lite::apache':
|
|
etherpad_crt => $etherpad_crt,
|
|
etherpad_key => $etherpad_key,
|
|
}
|
|
|
|
class { 'etherpad_lite::site':
|
|
database_password => $database_password,
|
|
}
|
|
|
|
class { 'etherpad_lite::mysql':
|
|
database_password => $database_password,
|
|
}
|
|
}
|
|
|
|
# vim:sw=2:ts=2:expandtab:textwidth=79
|