From eb7f46aa06922b5ff477d38acc51ace9ff04284a Mon Sep 17 00:00:00 2001 From: Alessandro Franceschi Date: Thu, 28 Nov 2013 12:28:54 +0100 Subject: [PATCH] Fixing permissions --- manifests/params.pp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/manifests/params.pp b/manifests/params.pp index eea17b0..b3e6360 100644 --- a/manifests/params.pp +++ b/manifests/params.pp @@ -34,14 +34,12 @@ # Perhaps this should be $puppet::params:config_file_owner ? $puppet_config_file_owner = $::operatingsystem ? { - /(?i:Debian|Ubuntu|Mint)/ => 'puppet', - default => 'root', + default => 'puppet', } # Perhaps this should be $puppet::params:config_file_group ? $puppet_config_file_group = $::operatingsystem ? { - /(?i:Debian|Ubuntu|Mint)/ => 'puppet', - default => 'root', + default => 'puppet', } $bindaddress = '0.0.0.0'