Merge branch 'devel' into 'main'

updating squid service

See merge request glicid-public/guix-glicid!13
This commit is contained in:
Jean-François GUILLAUME 2022-05-11 08:21:18 +00:00
commit 623b1ee869

View file

@ -51,6 +51,7 @@
)
#:pid-file #$pid-file
#:log-file #$log-file
#:user (passwd:uid (getpwnam "nobody"))
))
(stop #~(exec-command
(list
@ -62,6 +63,7 @@
)
#:pid-file #$pid-file
#:log-file #$log-file
#:user (passwd:uid (getpwnam "nobody"))
))
(actions (list
(shepherd-action
@ -75,6 +77,9 @@
"-k" "reconfigure"
"-f" #$config-file
)
#:pid-file #$pid-file
#:log-file #$log-file
#:user (passwd:uid (getpwnam "nobody"))
))
)
))