mirror of
https://codeberg.org/andyscott/s6-scripts.git
synced 2024-12-23 10:53:12 -05:00
11 lines
428 B
Text
11 lines
428 B
Text
|
#!/bin/execlineb -P
|
||
|
# See: https://git.skarnet.org/cgi-bin/cgit.cgi/s6/tree/examples
|
||
|
envfile /etc/s6/config/klogd.conf
|
||
|
importas -sCuD "s2000000 n3 t" DIRECTIVES DIRECTIVES
|
||
|
ifelse { test -w /var/log } {
|
||
|
foreground { install -d -o root -g root /var/log/klogd }
|
||
|
exec -c s6-log -d3 -b -- ${DIRECTIVES} /var/log/klogd
|
||
|
}
|
||
|
foreground { install -d -o root -g root /run/log/klogd }
|
||
|
exec -c s6-log -d3 -b -- ${DIRECTIVES} /run/log/klogd
|