From 445fbd4b256da68bf0f017ecb1f4ef65540e4d78 Mon Sep 17 00:00:00 2001 From: Proletaryo Cabales Date: Fri, 14 Aug 2015 08:28:07 +0800 Subject: [PATCH] explicitly define ownership of config directory Installation breaks for hardened Linux boxes with default umask of 0077 - this fixes the problem --- manifests/config.pp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/manifests/config.pp b/manifests/config.pp index 38144eae..16370620 100644 --- a/manifests/config.pp +++ b/manifests/config.pp @@ -86,6 +86,8 @@ file { $consul::config_dir: ensure => 'directory', + owner => $consul::user, + group => $consul::group, purge => $purge, recurse => $purge, } ->