From: Stephen Gran Date: Wed, 14 Oct 2009 07:49:32 +0000 (+0100) Subject: that was perhaps a bit too restrictive X-Git-Url: https://git.adam-barratt.org.uk/?a=commitdiff_plain;h=2dc9d95e7cc2f8ddde650b03a83c0f67b2e52cd9;hp=02781aa278d496ab877d4c62c74a68f8ea1a24b5;p=mirror%2Fdsa-puppet.git that was perhaps a bit too restrictive Signed-off-by: Stephen Gran --- diff --git a/modules/ntp/manifests/client.pp b/modules/ntp/manifests/client.pp index cc6964b55..c30316c75 100644 --- a/modules/ntp/manifests/client.pp +++ b/modules/ntp/manifests/client.pp @@ -2,7 +2,7 @@ class ntp::client inherits ntp { file { "/etc/ntp.conf": owner => root, group => root, - mode => 440, + mode => 444, source => [ "puppet:///ntp/client.conf" ], notify => Exec["ntp restart"], require => Package["ntp"] diff --git a/modules/ntp/manifests/server.pp b/modules/ntp/manifests/server.pp index cc5b3dcba..ded54e729 100644 --- a/modules/ntp/manifests/server.pp +++ b/modules/ntp/manifests/server.pp @@ -2,7 +2,7 @@ class ntp::server inherits ntp { file { "/etc/ntp.conf": owner => root, group => root, - mode => 440, + mode => 444, source => [ "puppet:///ntp/server.conf" ], notify => Exec["ntp restart"], require => Package["ntp"]