mirror of
https://codeberg.org/andyscott/s6-scripts.git
synced 2024-11-09 22:00:56 -05:00
10 lines
445 B
Text
10 lines
445 B
Text
|
#!/bin/execlineb -P
|
||
|
envfile /etc/s6/config/tomoyo-auditd.conf
|
||
|
importas -sCuD "n3 s2000000 T" DIRECTIVES DIRECTIVES
|
||
|
ifelse { test -w /var/log } {
|
||
|
foreground { install -d -o s6log -g s6log /var/log/tomoyo-auditd }
|
||
|
s6-setuidgid s6log exec -c s6-log -d3 -b -- ${DIRECTIVES} /var/log/tomoyo-auditd
|
||
|
}
|
||
|
foreground { install -d -o s6log -g s6log /run/log/tomoyo-auditd }
|
||
|
s6-setuidgid s6log exec -c s6-log -d3 -b -- ${DIRECTIVES} /run/log/tomoyo-auditd
|