16 lines
353 B
Plaintext
Executable File
16 lines
353 B
Plaintext
Executable File
#!/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
|
|
}
|
|
|