mirror of
https://github.com/TrezOne/docker-mods-uptime-kuma-timeout-fix.git
synced 2026-07-21 02:24:29 -04:00
13 lines
394 B
Plaintext
Executable File
13 lines
394 B
Plaintext
Executable File
#!/usr/bin/with-contenv bash
|
|
|
|
echo "[mod-auto-uptime-kuma] Installing SWAG auto-uptime-kuma packages"
|
|
|
|
if ! pip list 2>&1 | grep -q "uptime-kuma-api\|docker"; then
|
|
echo "\
|
|
docker \
|
|
uptime-kuma-api" >> /mod-pip-packages-to-install.list
|
|
echo "[mod-auto-uptime-kuma] Successfuly installed packages"
|
|
else
|
|
echo "[mod-auto-uptime-kuma] Packages already installed, skipping..."
|
|
fi
|