updating squid service

This commit is contained in:
Jean-François GUILLAUME 2022-05-10 15:33:46 +02:00
parent b1b8b9d036
commit 086a91dfa5
GPG key ID: 38751DAE145EFB5A

View file

@ -45,6 +45,7 @@
(start #~(make-forkexec-constructor
(list
#$(file-append squid "/sbin/squid")
"--foreground"
"-f" #$config-file
)
#:pid-file #$pid-file
@ -53,6 +54,7 @@
(stop #~(exec-command
(list
#$(file-append squid "/sbin/squid")
"--foreground"
"-k" "shutdown"
"-f" #$config-file
)
@ -66,6 +68,7 @@
(procedure #~(exec-command
(list
#$(file-append squid "/sbin/squid")
"--foreground"
"-k" "reconfigure"
"-f" #$config-file
)