From: Silvio Rhatto Date: Mon, 5 Jun 2017 22:06:37 +0000 (-0300) Subject: Changes for puppet 4 compatibility X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=0b6749e3fa3d24a98832c77ded4989ec0419bac0;p=puppet-mpd.git Changes for puppet 4 compatibility --- diff --git a/manifests/all.pp b/manifests/all.pp index acf8188..5c26afe 100644 --- a/manifests/all.pp +++ b/manifests/all.pp @@ -18,7 +18,7 @@ class mpd::all { ensure => present, owner => root, group => root, - mode => 0644, + mode => '0644', notify => Service['mpd'], source => [ "puppet:///modules/mpd/pulseaudio" ], } @@ -34,7 +34,7 @@ class mpd::all { ensure => present, owner => root, group => root, - mode => 0644, + mode => '0644', notify => Service['mpd'], source => [ "puppet:///modules/mpd/default.pa" ], } diff --git a/manifests/init.pp b/manifests/init.pp index 209b55d..551662d 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -19,7 +19,7 @@ class mpd( ensure => present, owner => mpd, group => audio, - mode => 0640, + mode => '0640', notify => Service['mpd'], }