mirror of
https://github.com/TrezOne/docker-mods-uptime-kuma-timeout-fix.git
synced 2026-07-19 09:53:02 -04:00
28 lines
904 B
Plaintext
Executable File
28 lines
904 B
Plaintext
Executable File
#!/usr/bin/with-contenv bash
|
|
|
|
if [[ ! -f /usr/bin/apt ]]; then
|
|
cat <<-EOF
|
|
********************************************************
|
|
********************************************************
|
|
* *
|
|
* !!!! *
|
|
* universal-calibre mod is only supported on images *
|
|
* using an Ubuntu base image. *
|
|
* *
|
|
********************************************************
|
|
********************************************************
|
|
EOF
|
|
exit 0
|
|
fi
|
|
|
|
export DEBIAN_FRONTEND="noninteractive"
|
|
|
|
if [[ -e /tmp/calibre.txz ]]; then
|
|
tar xf \
|
|
/tmp/calibre.txz \
|
|
-C /app/calibre
|
|
echo "Installing Calibre version $(cat /CALIBRE_RELEASE)"
|
|
/app/calibre/calibre_postinstall
|
|
rm /tmp/calibre.txz
|
|
fi
|