2018-02-23 10:17:37 +01:00
|
|
|
#!/bin/bash
|
|
|
|
set -euo pipefail
|
|
|
|
IFS=$'\n\t'
|
|
|
|
|
|
|
|
# make parallel citation shut up
|
2018-02-28 23:18:58 +01:00
|
|
|
mkdir -p ~executor/.parallel
|
2018-02-23 10:17:37 +01:00
|
|
|
touch ~executor/.parallel/will-cite
|
|
|
|
|
|
|
|
# repair ownership
|
|
|
|
find /data \! -user executor -exec chown executor:executor {} \;
|
|
|
|
|
|
|
|
# run cron
|
|
|
|
crond -f
|
|
|
|
|