mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-20 14:01:23 +02:00
5 lines
164 B
Bash
5 lines
164 B
Bash
#!/bin/sh
|
|
|
|
# pipe stderr to logger and leave stdin/stdout unaffected
|
|
{ /usr/libexec/tangd /var/lib/tang 2>&1 >&3 3>&- | logger -t tangd -p daemon.info 3>&-; } 3>&1
|