mirror of
https://github.com/TrezOne/docker-mods-uptime-kuma-timeout-fix.git
synced 2026-07-19 09:53:02 -04:00
10 lines
290 B
Plaintext
Executable File
10 lines
290 B
Plaintext
Executable File
#!/usr/bin/with-contenv bash
|
|
# shellcheck shell=bash
|
|
|
|
if [ ! -f /usr/sbin/cron ] && [ -f /usr/bin/apt ]; then
|
|
echo "**** Adding cron to package install list ****"
|
|
echo "cron" >>/mod-repo-packages-to-install.list
|
|
else
|
|
echo "**** cron package already installed, skipping ****"
|
|
fi
|