diff options
Diffstat (limited to 'manifests/master')
-rw-r--r-- | manifests/master/update.pp | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/manifests/master/update.pp b/manifests/master/update.pp index 36c9828..f650482 100644 --- a/manifests/master/update.pp +++ b/manifests/master/update.pp @@ -5,14 +5,8 @@ class puppet::master::update( file { "/usr/local/sbin/update-puppet-conf.sh": source => "puppet:///modules/puppet/update-puppet-conf.sh", owner => "puppet", - group => $method ? { - 'cron' => "puppet", - default => "gitolite", - }, - mode => $method ? { - 'cron' => 0755, - default => 4750, - }, + group => "puppet", + mode => 0750, ensure => present, } |