diff --git a/glicid/services/networking.scm b/glicid/services/networking.scm index e10e1b3..68fc9fc 100644 --- a/glicid/services/networking.scm +++ b/glicid/services/networking.scm @@ -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")) )) ) ))