From: Silvio Rhatto Date: Mon, 5 Jun 2017 22:06:26 +0000 (-0300) Subject: Changes for puppet 4 compatibility X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=4b39b34d6dae4f99e5d72173ab808eda5c6571cb;p=puppet-infinoted.git Changes for puppet 4 compatibility --- diff --git a/manifests/init.pp b/manifests/init.pp index fab766d..b62d9a4 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -32,7 +32,7 @@ class infinoted( ensure => directory, owner => 'infinoted', group => 'infinoted', - mode => 0750, + mode => '0750', require => User['infinoted'], } @@ -42,7 +42,7 @@ class infinoted( ensure => directory, owner => 'infinoted', group => 'infinoted', - mode => 0750, + mode => '0750', require => File['/var/lib/infinoted'], } @@ -50,7 +50,7 @@ class infinoted( ensure => present, owner => 'infinoted', group => 'infinoted', - mode => 0640, + mode => '0640', content => template('infinoted/infinoted.conf.erb'), require => File['/var/lib/infinoted/.config'], } @@ -73,7 +73,7 @@ class infinoted( ensure => present, owner => root, group => root, - mode => 0644, + mode => '0644', source => 'puppet:///modules/infinoted/infinoted.service', notify => Service['avahi-daemon'], }