summaryrefslogtreecommitdiff
path: root/manifests/init.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/init.pp')
-rw-r--r--manifests/init.pp21
1 files changed, 9 insertions, 12 deletions
diff --git a/manifests/init.pp b/manifests/init.pp
index 928b5c8..ac7ccdd 100644
--- a/manifests/init.pp
+++ b/manifests/init.pp
@@ -88,18 +88,15 @@ 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'],
- }
+ if $etherpad_api_key != '' {
+ 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'],
}
}