From dfe43c21d03a78f7419904cad27e359d1b87353c Mon Sep 17 00:00:00 2001 From: Eric D Helms Date: Mon, 17 Oct 2016 09:17:16 -0400 Subject: [PATCH] Fix log access on EL6 The 'stdio' in front of the log access leads to errors starting squid on EL6: Cannot open 'stdio:/var/log/squid/store.log' because#012#011the parent directory does not exist.#012#011Please create the directory. --- manifests/params.pp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/manifests/params.pp b/manifests/params.pp index 41eca8f..82523d1 100644 --- a/manifests/params.pp +++ b/manifests/params.pp @@ -50,8 +50,8 @@ } } - $access_log = [ "stdio:${log_directory}/access.log squid" ] + $access_log = [ "${log_directory}/access.log squid" ] $cache_log = "${log_directory}/cache.log" - $cache_store_log = "stdio:${log_directory}/store.log" + $cache_store_log = "${log_directory}/store.log" }