blob: 1da83b25493be463e5d702f313e1452b5829f24e [file] [log] [blame]
class etherpad_lite::site (
$dbType = 'mysql'
) {
include etherpad_lite
if $dbType == 'mysql' {
service { 'etherpad-lite':
enable => true,
ensure => running,
subscribe => File["${etherpad_lite::base_install_dir}/etherpad-lite/settings.json"],
require => Class['etherpad_lite::mysql'],
}
}
else {
service { 'etherpad-lite':
enable => true,
ensure => running,
subscribe => File["${etherpad_lite::base_install_dir}/etherpad-lite/settings.json"],
}
}
file { "${etherpad_lite::base_install_dir}/etherpad-lite/settings.json":
ensure => 'present',
source => 'file:///root/secret-files/etherpad-lite_settings.json',
replace => true,
owner => $etherpad_lite::ep_user,
group => $etherpad_lite::ep_user,
mode => 0600,
require => Class['etherpad_lite']
}
file { "${etherpad_lite::base_install_dir}/etherpad-lite/src/static/custom/pad.js":
ensure => 'present',
source => 'puppet:///modules/etherpad_lite/pad.js',
owner => $etherpad_lite::ep_user,
group => $etherpad_lite::ep_user,
require => Class['etherpad_lite']
}
include logrotate
logrotate::file { 'epliteerror':
log => "${etherpad_lite::base_log_dir}/${etherpad_lite::ep_user}/error.log",
options => ['compress', 'delaycompress', 'missingok', 'rotate 7', 'daily', 'notifempty'],
require => Service['etherpad-lite']
}
logrotate::file { 'epliteaccess':
log => "${etherpad_lite::base_log_dir}/${etherpad_lite::ep_user}/access.log",
options => ['compress', 'delaycompress', 'missingok', 'rotate 7', 'daily', 'notifempty'],
require => Service['etherpad-lite']
}
}