a09c10ea78
Make it possible to optionally install ep_headings on an etherpad environment. This makes it easy to enable this on some environments, but not all. Default to 'false', but set 'true' for etherpad_dev. With summit coming up, it would be nice to have ep_headings in the etherpads, makes them a lot easier to read. fix puppet lint issue with all the equals signs not lining up. Change-Id: I8cfa12480aed0b351012161c2cdbc406c0f52e7a Reviewed-on: https://review.openstack.org/26380 Reviewed-by: Monty Taylor <mordred@inaugust.com> Reviewed-by: Paul Belanger <paul.belanger@polybeacon.com> Approved: James E. Blair <corvus@inaugust.com> Reviewed-by: James E. Blair <corvus@inaugust.com> Tested-by: Jenkins
40 lines
1.1 KiB
Puppet
40 lines
1.1 KiB
Puppet
class openstack_project::etherpad_dev (
|
|
$database_password = '',
|
|
$sysadmins = []
|
|
) {
|
|
class { 'openstack_project::server':
|
|
iptables_public_tcp_ports => [22, 80, 443],
|
|
sysadmins => $sysadmins
|
|
}
|
|
|
|
class { 'etherpad_lite':
|
|
# Use the version running on the prod server.
|
|
eplite_version => '4195e11a41c5992bc555cef71246800bceaf1915',
|
|
# Use the version running on the prod server.
|
|
nodejs_version => 'v0.6.16',
|
|
# Once dev install is working replace the above parameters with
|
|
# the following to test automated upgrade by puppet.
|
|
# eplite_version => '1.1.4',
|
|
# nodejs_version => 'v0.8.14',
|
|
ep_headings => true
|
|
}
|
|
|
|
include etherpad_lite::backup
|
|
|
|
class { 'etherpad_lite::apache':
|
|
ssl_cert_file => '/etc/ssl/certs/ssl-cert-snakeoil.pem',
|
|
ssl_key_file => '/etc/ssl/private/ssl-cert-snakeoil.key',
|
|
ssl_chain_file => '',
|
|
}
|
|
|
|
class { 'etherpad_lite::site':
|
|
database_password => $database_password,
|
|
}
|
|
|
|
class { 'etherpad_lite::mysql':
|
|
database_password => $database_password,
|
|
}
|
|
}
|
|
|
|
# vim:sw=2:ts=2:expandtab:textwidth=79
|