summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--manifests/init.pp15
1 files changed, 15 insertions, 0 deletions
diff --git a/manifests/init.pp b/manifests/init.pp
index adf5662..928b5c8 100644
--- a/manifests/init.pp
+++ b/manifests/init.pp
@@ -88,6 +88,21 @@ class etherpad {
notify => Service['etherpad-lite'],
}
+ case $etherpad_api_key {
+ '' => { },
+ default => {
+ file { '/var/lib/etherpad-lite/APIKEY.txt':
+ ensure => present,
+ owner => 'etherpad-lite',
+ group => 'etherpad-lite',
+ mode => 0640,
+ content => "$etherpad_api_key",
+ require => Vcsrepo['/var/lib/etherpad-lite'],
+ notify => Service['etherpad-lite'],
+ }
+ }
+ }
+
service { 'etherpad-lite':
enable => true,
ensure => running,