mirror of
https://github.com/TrezOne/docker-mods-uptime-kuma-timeout-fix.git
synced 2026-07-20 10:21:36 -04:00
12 lines
288 B
Plaintext
Executable File
12 lines
288 B
Plaintext
Executable File
#!/usr/bin/with-contenv bash
|
|
|
|
if [[ -f /usr/bin/apt ]]; then
|
|
# Ubuntu
|
|
cp /unrar6/unrar-ubuntu /usr/bin/unrar
|
|
elif [[ -f /sbin/apk ]]; then
|
|
# Alpine
|
|
cp /unrar6/unrar-alpine /usr/bin/unrar
|
|
else
|
|
echo "*** This mod only supports Ubuntu and Alpine-based containers ***"
|
|
fi
|