Files
docker-mods-uptime-kuma-tim…/root/etc/s6-overlay/s6-rc.d/svc-mod-universal-cron/run
T
2022-08-26 12:30:09 -04:00

10 lines
184 B
Plaintext
Executable File

#!/usr/bin/with-contenv bash
if [ -f /usr/bin/apt ]; then
# ubuntu
exec /usr/sbin/cron -f -L 1
elif [ -f /sbin/apk ]; then
# alpine
exec /usr/sbin/crond -f -S -l 5
fi