
This updates the tests to test installation for the same version of etherpad that we are running in production. Change-Id: I3624b79a8bb2c9c362037d1b025a3df9bf7c701f
26 lines
605 B
Puppet
26 lines
605 B
Puppet
class { '::etherpad_lite::mysql':
|
|
database_password => 'password',
|
|
mysql_root_password => 'password',
|
|
}
|
|
|
|
class { '::etherpad_lite':
|
|
ep_ensure => 'latest',
|
|
eplite_version => '1.7.0',
|
|
nodejs_version => '6.x',
|
|
}
|
|
|
|
class { '::etherpad_lite::apache':
|
|
ssl_cert_file => '/etc/ssl/certs/ssl-cert-snakeoil.pem',
|
|
ssl_key_file => '/etc/ssl/private/ssl-cert-snakeoil.key',
|
|
vhost_name => 'localhost',
|
|
}
|
|
|
|
class { '::etherpad_lite::site':
|
|
database_password => 'password',
|
|
etherpad_title => 'A fake title',
|
|
}
|
|
|
|
etherpad_lite::plugin { 'ep_headings':
|
|
require => Class['etherpad_lite'],
|
|
}
|