From 408a5842aa33a8a5b91659904a1b87c7e8b48da8 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Fri, 13 May 2022 11:53:10 +0200 Subject: [PATCH] updating squid service --- glicid/services/networking.scm | 18 ++++++------------ 1 file changed, 6 insertions(+), 12 deletions(-) diff --git a/glicid/services/networking.scm b/glicid/services/networking.scm index 7b70566..7118055 100644 --- a/glicid/services/networking.scm +++ b/glicid/services/networking.scm @@ -69,10 +69,8 @@ "-k" "reconfigure" "-f" #$config-file ) - #:pid-file #$pid-file - #:log-file #$log-file - #:user (passwd:uid (getpwnam "squid")) - #:group (passwd:gid (getpwnam "squid")) + #:user (passwd:uid (getpwnam "squid")) + #:group (passwd:gid (getpwnam "squid")) ))) ) (shepherd-action @@ -84,10 +82,8 @@ "-k" "parse" "-f" #$config-file ) - #:pid-file #$pid-file - #:log-file #$log-file - #:user (passwd:uid (getpwnam "squid")) - #:group (passwd:gid (getpwnam "squid")) + #:user (passwd:uid (getpwnam "squid")) + #:group (passwd:gid (getpwnam "squid")) ))) ) (shepherd-action @@ -99,10 +95,8 @@ "-k" "kill" "-f" #$config-file ) - #:pid-file #$pid-file - #:log-file #$log-file - #:user (passwd:uid (getpwnam "squid")) - #:group (passwd:gid (getpwnam "squid")) + #:user (passwd:uid (getpwnam "squid")) + #:group (passwd:gid (getpwnam "squid")) ))) ) ))