mirror of
https://git.sr.ht/~mser/synupkeep
synced 2025-04-03 18:30:49 +00:00
15 lines
235 B
Bash
15 lines
235 B
Bash
#!/bin/sh
|
|
|
|
cp .crontab.docker /tmp/.crontab
|
|
sed -i "s~SYNUPKEEP_DOCKER_CRON_SCHEDULE~$SYNUPKEEP_DOCKER_CRON_SCHEDULE~g" /tmp/.crontab
|
|
|
|
stop() {
|
|
pkill supercronic
|
|
sleep 1
|
|
}
|
|
|
|
trap "stop" SIGTERM
|
|
|
|
supercronic /tmp/.crontab &
|
|
|
|
wait $!
|