GNU bug report logs -
#30939
shepherd: detailed output should be placed into well-known location and not tty
Previous Next
Reported by: ng0 <ng0 <at> n0.is>
Date: Sun, 25 Mar 2018 18:36:01 UTC
Severity: important
Merged with 36264
Done: Ludovic Courtès <ludo <at> gnu.org>
Bug is archived. No further changes may be made.
Full log
View this message in rfc822 format
This came up again recently, compare the discussion here:
https://lists.gnu.org/archive/html/guix-devel/2019-06/msg00186.html
Here’s some code to wrap an executable manually to capture its output
and send it to syslog:
(define* (logger-wrapper name exec . args)
"Return a derivation that builds a script to start a process with
standard output and error redirected to syslog via logger."
(define exp
#~(begin
(use-modules (ice-9 popen))
(let* ((pid (number->string (getpid)))
(logger #$(file-append inetutils "/bin/logger"))
(args (list "-t" #$name (string-append "--id=" pid)))
(pipe (apply open-pipe* OPEN_WRITE logger args)))
(dup pipe 1)
(dup pipe 2)
(execl #$exec #$exec #$@args))))
(program-file (string-append name "-logger") exp))
This bug report was last modified 253 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.