15 lines
245 B
Plaintext
15 lines
245 B
Plaintext
|
#!/bin/bash
|
||
|
set -euo pipefail
|
||
|
IFS=$'\n\t'
|
||
|
|
||
|
# make parallel citation shut up
|
||
|
mkdir ~executor/.parallel
|
||
|
touch ~executor/.parallel/will-cite
|
||
|
|
||
|
# repair ownership
|
||
|
find /data \! -user executor -exec chown executor:executor {} \;
|
||
|
|
||
|
# run cron
|
||
|
crond -f
|
||
|
|