2019-04-13 19:04:54 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
# Dump all env vars so we can source them in cron jobs
|
2024-01-05 03:50:13 +01:00
|
|
|
rcb dump-env > /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
|