10 lines
179 B
Bash
Executable File
10 lines
179 B
Bash
Executable File
#!/bin/bash -eu
|
|
|
|
# specific to alpine, won't work with debian
|
|
|
|
# place crontab /!\ UTC time
|
|
printf "${SCHEDULE} /app/scripts/runjob.sh \n" | crontab -
|
|
|
|
# start cron
|
|
exec crond -f
|