13 lines
277 B
Plaintext
13 lines
277 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
# make parallel citation shut up
|
||
|
mkdir -p ~executor/.parallel
|
||
|
touch ~executor/.parallel/will-cite
|
||
|
|
||
|
# repair ownership
|
||
|
find /data \! -user executor -exec chown executor:executor {} \;
|
||
|
|
||
|
frontail /var/log/syslog /home/executor/cron.log --daemonize --url-path /logs
|
||
|
|
||
|
|