services: tor: Log to stderr rather than syslog.
* gnu/services/networking.scm (tor-configuration->torrc): Change ‘Log’ directive to ‘stderr’. (tor-shepherd-service): Remove /dev/log file system mapping. Change-Id: I2e33ad8033f884ce59d929a4181172325331efe0master
parent
8f0878da8d
commit
49e9c9ec3e
|
@ -1001,7 +1001,7 @@ maps ports 22 and 80 of the Onion Service to the local ports 22 and 8080."))
|
||||||
(display "\
|
(display "\
|
||||||
### These lines were generated from your system configuration:
|
### These lines were generated from your system configuration:
|
||||||
DataDirectory /var/lib/tor
|
DataDirectory /var/lib/tor
|
||||||
Log notice syslog\n" port)
|
Log notice stderr\n" port)
|
||||||
(when (eq? 'unix '#$socks-socket-type)
|
(when (eq? 'unix '#$socks-socket-type)
|
||||||
(display "\
|
(display "\
|
||||||
SocksPort unix:/var/run/tor/socks-sock
|
SocksPort unix:/var/run/tor/socks-sock
|
||||||
|
@ -1046,9 +1046,6 @@ HiddenServicePort ~a ~a~%"
|
||||||
(source "/var/lib/tor")
|
(source "/var/lib/tor")
|
||||||
(target source)
|
(target source)
|
||||||
(writable? #t))
|
(writable? #t))
|
||||||
(file-system-mapping
|
|
||||||
(source "/dev/log") ;for syslog
|
|
||||||
(target source))
|
|
||||||
(file-system-mapping
|
(file-system-mapping
|
||||||
(source "/var/run/tor")
|
(source "/var/run/tor")
|
||||||
(target source)
|
(target source)
|
||||||
|
|
Reference in New Issue