services: tor: Write to syslog.

* gnu/services/networking.scm (tor-configuration->torrc): Add "Log
notice syslog".
(tor-dmd-service): Add 'syslogd' to 'requirement'.
master
Ludovic Courtès 2015-11-27 23:08:00 +01:00
parent 6331bde73f
commit 5ee35eb747
1 changed files with 3 additions and 2 deletions

View File

@ -350,7 +350,8 @@ keep the system clock synchronized with that of @var{servers}."
(lambda (port)
(display "\
# The beginning was automatically added.
User tor\n" port)
User tor
Log notice syslog\n" port)
(for-each (match-lambda
((service (ports hosts) ...)
@ -384,7 +385,7 @@ HiddenServicePort ~a ~a~%"
;; Tor needs at least one network interface to be up, hence the
;; dependency on 'loopback'.
(requirement '(user-processes loopback))
(requirement '(user-processes loopback syslogd))
(start #~(make-forkexec-constructor
(list (string-append #$tor "/bin/tor") "-f" #$torrc)))