system-config/modules/openstack_project/manifests/etherpad.pp
Monty Taylor e498870959 Make a class for each type of server.
Change-Id: I520b77a4d83958a6a1c2472e87b28f6b8822d890
2012-07-23 10:33:20 -05:00

19 lines
495 B
Puppet

class openstack_project::etherpad {
class { 'openstack_project::server':
iptables_public_tcp_ports => [22, 80, 443]
}
include etherpad_lite
class { 'etherpad_lite::nginx':
etherpad_crt => hiera('etherpad_crt'),
etherpad_key => hiera('etherpad_key')
}
class { 'etherpad_lite::site':
database_password => hiera('etherpad_db_password'),
}
class { 'etherpad_lite::mysql':
database_password => hiera('etherpad_db_password'),
}
include etherpad_lite::backup
}