mirror of
https://github.com/TrezOne/docker-mods-uptime-kuma-timeout-fix.git
synced 2026-06-30 03:53:18 -04:00
8 lines
155 B
Plaintext
8 lines
155 B
Plaintext
#!/usr/bin/with-contenv bash
|
|
|
|
# install autossh
|
|
if [ -z `command -v autossh` ]; then
|
|
echo "**** installing autossh ****"
|
|
apk add --no-cache autossh
|
|
fi
|