mirror of
https://github.com/TrezOne/docker-mods-uptime-kuma-timeout-fix.git
synced 2026-06-28 11:13:00 -04:00
11 lines
185 B
Plaintext
11 lines
185 B
Plaintext
#!/usr/bin/with-contenv bash
|
|
|
|
if [ -f /usr/bin/apt ]; then
|
|
# ubuntu
|
|
exec /usr/sbin/cron -f -L 1
|
|
fi
|
|
if [ -f /sbin/apk ]; then
|
|
# alpine
|
|
exec /usr/sbin/crond -f -S -l 5
|
|
fi
|