mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-23 11:15:13 +03:00
4 lines
164 B
Bash
4 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
|