From c7fb352e4531d6d27cf2fc860a84725483b8f920 Mon Sep 17 00:00:00 2001 From: Alexandre Fouche Date: Sun, 28 May 2017 10:52:13 +0200 Subject: [PATCH 1/2] Reset potentially inherited defaults (since the mode is not always specified in below items, for example "${elasticsearch::homedir}/lib" ) --- manifests/config.pp | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/manifests/config.pp b/manifests/config.pp index 9e88c6ddf..55d2fc66f 100644 --- a/manifests/config.pp +++ b/manifests/config.pp @@ -31,6 +31,13 @@ cwd => '/', } + # Reset potentially inherited defaults (since the mode is not always specified in below items, for example "${elasticsearch::homedir}/lib" ) + File { + owner => undef, + group => undef, + mode => undef, + } + if ( $elasticsearch::ensure == 'present' ) { file { From 80edce5b5afbf85a98cb90089ec46a9f14c925d2 Mon Sep 17 00:00:00 2001 From: Alexandre Fouche Date: Tue, 20 Jun 2017 10:15:07 +0200 Subject: [PATCH 2/2] EMPTY