matomo/rootfs/etc/cont-init.d/copy-matomo.sh
Knut Ahlers b49906031d
Initial version
Signed-off-by: Knut Ahlers <knut@ahlers.me>
2019-06-09 12:51:46 +02:00

16 lines
523 B
Bash
Executable file

#!/usr/bin/with-contenv /bin/bash
set -euo pipefail
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