puppet-etherpad_lite/spec/acceptance/fixtures/etherpad_lite.pp

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'],
}