matomo/rootfs/etc/cont-init.d/copy-matomo.sh
Knut Ahlers 604ad209f5
Split script, update GeoIP database
Signed-off-by: Knut Ahlers <knut@ahlers.me>
2019-06-09 20:27:24 +02:00

17 lines
562 B
Bash
Executable file

#!/usr/bin/with-contenv /bin/bash
set -euo pipefail
echo "Checking for Matomo update..."
if [[ -f core/Version.php ]]; then
installed_version=$(grep VERSION core/Version.php | sed -E "s/.*'(.*)'.*/\\1/")
if [ -n "${installed_version}" ] && [[ ${installed_version} == ${MATOMO_VERSION} ]]; then
echo "- Matomo installation is up-to-date." >&2
exit 0
fi
fi
echo "No Matomo installation found or not up-to-date" >&2
echo "Installing bundled Matomo version" >&2
tar -xvz -C /var/www --strip-components=1 -f /opt/matomo.tgz
chown -R nobody:nogroup /var/www