16 lines
353 B
Plaintext
16 lines
353 B
Plaintext
|
#!/sbin/openrc-run
|
||
|
|
||
|
description="Sets executor initial evironment"
|
||
|
|
||
|
start() {
|
||
|
# make parallel citation shut up
|
||
|
mkdir -p ~executor/.parallel
|
||
|
touch ~executor/.parallel/will-cite
|
||
|
# repair ownership
|
||
|
find /data \! -user executor -exec chown executor:executor {} \;
|
||
|
# pidfile
|
||
|
touch /var/run/checker.pid
|
||
|
chown executor:executor /var/run/checker.pid
|
||
|
}
|
||
|
|