7d8c838038
Change-Id: Idd712a8ee5ec81c6b88b7d3e2270dce4da254927 Reviewed-on: https://review.openstack.org/10838 Approved: Monty Taylor <mordred@inaugust.com> Reviewed-by: Monty Taylor <mordred@inaugust.com> Tested-by: Jenkins
22 lines
516 B
Puppet
22 lines
516 B
Puppet
class openstack_project::etherpad(
|
|
$etherpad_crt,
|
|
$etherpad_key,
|
|
$database_password) {
|
|
class { 'openstack_project::server':
|
|
iptables_public_tcp_ports => [22, 80, 443]
|
|
}
|
|
|
|
include etherpad_lite
|
|
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,
|
|
}
|
|
include etherpad_lite::backup
|
|
}
|