Merge pull request #142803 from mkg20001/matomoplugins
This commit is contained in:
commit
f096b7122a
@ -24,6 +24,7 @@ in {
|
|||||||
(mkRemovedOptionModule [ "services" "piwik" "phpfpmProcessManagerConfig" ] "Use services.phpfpm.pools.<name>.settings")
|
(mkRemovedOptionModule [ "services" "piwik" "phpfpmProcessManagerConfig" ] "Use services.phpfpm.pools.<name>.settings")
|
||||||
(mkRemovedOptionModule [ "services" "matomo" "phpfpmProcessManagerConfig" ] "Use services.phpfpm.pools.<name>.settings")
|
(mkRemovedOptionModule [ "services" "matomo" "phpfpmProcessManagerConfig" ] "Use services.phpfpm.pools.<name>.settings")
|
||||||
(mkRenamedOptionModule [ "services" "piwik" "nginx" ] [ "services" "matomo" "nginx" ])
|
(mkRenamedOptionModule [ "services" "piwik" "nginx" ] [ "services" "matomo" "nginx" ])
|
||||||
|
(mkRenamedOptionModule [ "services" "matomo" "periodicArchiveProcessingUrl" ] [ "services" "matomo" "hostname" ])
|
||||||
];
|
];
|
||||||
|
|
||||||
options = {
|
options = {
|
||||||
@ -77,7 +78,7 @@ in {
|
|||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
periodicArchiveProcessingUrl = mkOption {
|
hostname = mkOption {
|
||||||
type = types.str;
|
type = types.str;
|
||||||
default = "${user}.${fqdn}";
|
default = "${user}.${fqdn}";
|
||||||
example = "matomo.yourdomain.org";
|
example = "matomo.yourdomain.org";
|
||||||
@ -170,6 +171,19 @@ in {
|
|||||||
fi
|
fi
|
||||||
chown -R ${user}:${user} ${dataDir}
|
chown -R ${user}:${user} ${dataDir}
|
||||||
chmod -R ug+rwX,o-rwx ${dataDir}
|
chmod -R ug+rwX,o-rwx ${dataDir}
|
||||||
|
|
||||||
|
if [ -e ${dataDir}/current-package ]; then
|
||||||
|
CURRENT_PACKAGE=$(readlink ${dataDir}/current-package)
|
||||||
|
NEW_PACKAGE=${cfg.package}
|
||||||
|
if [ "$CURRENT_PACKAGE" != "$NEW_PACKAGE" ]; then
|
||||||
|
# keeping tmp arround between upgrades seems to bork stuff, so delete it
|
||||||
|
rm -rf ${dataDir}/tmp
|
||||||
|
fi
|
||||||
|
elif [ -e ${dataDir}/tmp ]; then
|
||||||
|
# upgrade from 4.4.1
|
||||||
|
rm -rf ${dataDir}/tmp
|
||||||
|
fi
|
||||||
|
ln -sfT ${cfg.package} ${dataDir}/current-package
|
||||||
'';
|
'';
|
||||||
script = ''
|
script = ''
|
||||||
# Use User-Private Group scheme to protect Matomo data, but allow administration / backup via 'matomo' group
|
# Use User-Private Group scheme to protect Matomo data, but allow administration / backup via 'matomo' group
|
||||||
@ -202,7 +216,7 @@ in {
|
|||||||
UMask = "0007";
|
UMask = "0007";
|
||||||
CPUSchedulingPolicy = "idle";
|
CPUSchedulingPolicy = "idle";
|
||||||
IOSchedulingClass = "idle";
|
IOSchedulingClass = "idle";
|
||||||
ExecStart = "${cfg.package}/bin/matomo-console core:archive --url=https://${cfg.periodicArchiveProcessingUrl}";
|
ExecStart = "${cfg.package}/bin/matomo-console core:archive --url=https://${cfg.hostname}";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -258,7 +272,7 @@ in {
|
|||||||
# References:
|
# References:
|
||||||
# https://fralef.me/piwik-hardening-with-nginx-and-php-fpm.html
|
# https://fralef.me/piwik-hardening-with-nginx-and-php-fpm.html
|
||||||
# https://github.com/perusio/piwik-nginx
|
# https://github.com/perusio/piwik-nginx
|
||||||
"${user}.${fqdn}" = mkMerge [ cfg.nginx {
|
"${cfg.hostname}" = mkMerge [ cfg.nginx {
|
||||||
# don't allow to override the root easily, as it will almost certainly break Matomo.
|
# don't allow to override the root easily, as it will almost certainly break Matomo.
|
||||||
# disadvantage: not shown as default in docs.
|
# disadvantage: not shown as default in docs.
|
||||||
root = mkForce "${cfg.package}/share";
|
root = mkForce "${cfg.package}/share";
|
||||||
|
@ -3,16 +3,16 @@
|
|||||||
let
|
let
|
||||||
versions = {
|
versions = {
|
||||||
matomo = {
|
matomo = {
|
||||||
version = "4.4.1";
|
version = "4.5.0";
|
||||||
sha256 = "0y8ljdj97znvd3hkkr7s6s9k8m93agw3z9cfw1azzaxgc46akfcl";
|
sha256 = "sha256-OyjdzY+ENYxOTVjDLjj2unJbpaGODIH2I5Acmt45HDA=";
|
||||||
};
|
};
|
||||||
|
|
||||||
matomo-beta = {
|
matomo-beta = {
|
||||||
version = "4.4.1";
|
version = "4.6.0";
|
||||||
# `beta` examples: "b1", "rc1", null
|
# `beta` examples: "b1", "rc1", null
|
||||||
# TOOD when updating: use null if stable version is >= latest beta or release candidate
|
# when updating: use null if stable version is >= latest beta or release candidate
|
||||||
beta = null;
|
beta = "b2";
|
||||||
sha256 = "0y8ljdj97znvd3hkkr7s6s9k8m93agw3z9cfw1azzaxgc46akfcl";
|
sha256 = "sha256-7p/ZPtr5a/tBjrM27ILF3rNfxDIWuzWKCXNom3HlyL8=";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
common = pname: { version, sha256, beta ? null }:
|
common = pname: { version, sha256, beta ? null }:
|
||||||
@ -74,10 +74,9 @@ let
|
|||||||
"misc/composer/clean-xhprof.sh"
|
"misc/composer/clean-xhprof.sh"
|
||||||
"misc/cron/archive.sh"
|
"misc/cron/archive.sh"
|
||||||
"plugins/Installation/FormDatabaseSetup.php"
|
"plugins/Installation/FormDatabaseSetup.php"
|
||||||
"vendor/leafo/lessphp/package.sh"
|
|
||||||
"vendor/pear/archive_tar/sync-php4"
|
"vendor/pear/archive_tar/sync-php4"
|
||||||
"vendor/szymach/c-pchart/coverage.sh"
|
"vendor/szymach/c-pchart/coverage.sh"
|
||||||
# drupal_test.sh does not exist in 3.12.0-b3; added for 3.13.0
|
"vendor/matomo/matomo-php-tracker/run_tests.sh"
|
||||||
"vendor/twig/twig/drupal_test.sh"
|
"vendor/twig/twig/drupal_test.sh"
|
||||||
];
|
];
|
||||||
|
|
||||||
@ -92,6 +91,8 @@ let
|
|||||||
length="$(wc -c "$f" | cut -d' ' -f1)"
|
length="$(wc -c "$f" | cut -d' ' -f1)"
|
||||||
hash="$(md5sum "$f" | cut -d' ' -f1)"
|
hash="$(md5sum "$f" | cut -d' ' -f1)"
|
||||||
sed -i "s:\\(\"$f\"[^(]*(\\).*:\\1\"$length\", \"$hash\"),:g" config/manifest.inc.php
|
sed -i "s:\\(\"$f\"[^(]*(\\).*:\\1\"$length\", \"$hash\"),:g" config/manifest.inc.php
|
||||||
|
else
|
||||||
|
echo "INFO(files-to-fix): $f does not exist in this version"
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
popd > /dev/null
|
popd > /dev/null
|
||||||
|
Loading…
Reference in New Issue
Block a user