From: Silvio Rhatto Date: Sat, 21 May 2016 16:15:10 +0000 (-0300) Subject: Maintenance: fix logic X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=c5759f991947d99a0b6c4fe489f93e8287f15f5f;p=puppet-mpd.git Maintenance: fix logic --- diff --git a/manifests/maintenance.pp b/manifests/maintenance.pp index 1c57d2c..796880f 100644 --- a/manifests/maintenance.pp +++ b/manifests/maintenance.pp @@ -8,8 +8,8 @@ class mpd::maintenance inherits mpd::client::base { hour => "7", minute => "0", ensure => $password ? { - '' => present, - default => absent, + '' => absent, + default => present, }, } }