mirror of
https://github.com/luzifer-docker/matomo.git
synced 2024-12-21 04:11:17 +00:00
16 lines
523 B
Bash
Executable file
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
|