mirror of
https://github.com/TrezOne/docker-mods-uptime-kuma-timeout-fix.git
synced 2026-07-19 18:03:01 -04:00
12 lines
304 B
Plaintext
Executable File
12 lines
304 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 "*** The universal-unrar6 mod only supports Ubuntu and Alpine-based containers ***"
|
|
fi
|