
Add a service file for later Ubuntu versions. Centralise the logging into init.pp as it's not as easy to get logs to file from stdout/err via systemd. Fix up the logrotation while we're there Change-Id: I43ea764d070fb44502bda0c845485769dace6ff3
45 lines
1.1 KiB
Puppet
45 lines
1.1 KiB
Puppet
# == Class: etherpad_lite::site
|
|
#
|
|
class etherpad_lite::site (
|
|
$database_password,
|
|
$etherpad_title,
|
|
$database_host = 'localhost',
|
|
$database_name = 'etherpad-lite',
|
|
$database_user = 'eplite',
|
|
$db_type = 'mysql',
|
|
$session_key = '',
|
|
) {
|
|
|
|
include ::etherpad_lite
|
|
|
|
$base = $etherpad_lite::base_install_dir
|
|
|
|
service { 'etherpad-lite':
|
|
ensure => running,
|
|
enable => true,
|
|
subscribe => File["${base}/etherpad-lite/settings.json"],
|
|
}
|
|
|
|
file { "${base}/etherpad-lite/settings.json":
|
|
ensure => present,
|
|
content => template('etherpad_lite/etherpad-lite_settings.json.erb'),
|
|
replace => true,
|
|
owner => $etherpad_lite::ep_user,
|
|
group => $etherpad_lite::ep_user,
|
|
mode => '0600',
|
|
require => Class['etherpad_lite'],
|
|
before => Service['etherpad-lite'],
|
|
}
|
|
|
|
file { "${base}/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,
|
|
mode => '0644',
|
|
require => Class['etherpad_lite'],
|
|
before => Service['etherpad-lite'],
|
|
}
|
|
|
|
}
|