From: Silvio Rhatto Date: Mon, 5 Jun 2017 22:06:54 +0000 (-0300) Subject: Changes for puppet 4 compatibility X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=415367c57823b1064becf3fe3deaed6f966118a2;p=puppet-ntp.git Changes for puppet 4 compatibility --- diff --git a/manifests/init.pp b/manifests/init.pp index 40d8fc4..a785276 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -24,7 +24,7 @@ class ntp( file { "/etc/ntp.drift": owner => "root", group => "root", - mode => 0644, + mode => '0644', ensure => present, } @@ -33,7 +33,7 @@ class ntp( content => template('ntp/ntp.conf.erb'), owner => "root", group => "root", - mode => 0644, + mode => '0644', ensure => present, notify => Service["ntp"], }