mirror of
https://github.com/TrezOne/docker-mods-uptime-kuma-timeout-fix.git
synced 2026-07-19 09:53:02 -04:00
9 lines
239 B
Plaintext
Executable File
9 lines
239 B
Plaintext
Executable File
#!/usr/bin/with-contenv bash
|
|
|
|
if [ -z `command -v autossh` ]; then
|
|
echo "**** Adding autossh to package install list ****"
|
|
echo "autossh" >> /mod-repo-packages-to-install.list
|
|
else
|
|
echo "**** autossh already installed ****"
|
|
fi
|