2019-04-13 19:04:54 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
# Dump all env vars so we can source them in cron jobs
|
2019-11-15 14:23:56 +01:00
|
|
|
printenv | sed 's/^\(.*\)$/export \1/g' > /env.sh
|
2019-04-13 19:04:54 +02:00
|
|
|
|
2019-12-08 06:38:56 +01:00
|
|
|
# Write crontab
|
|
|
|
rcb crontab > crontab
|
|
|
|
|
2019-04-13 19:04:54 +02:00
|
|
|
# start cron in the foreground
|
|
|
|
crontab crontab
|
|
|
|
crond -f
|