diff options
author | Jakub Jirutka <jakub@jirutka.cz> | 2017-06-25 02:41:18 +0200 |
---|---|---|
committer | Jakub Jirutka <jakub@jirutka.cz> | 2017-06-25 02:42:48 +0200 |
commit | 138270d90873b54e7c58f52eb015b4afc37f16cd (patch) | |
tree | 519f656750c27370f646a228b23b097c8a544a5e /community/nextcloud/disable-integrity-check-as-default.patch | |
parent | 09debd9f9820565692f47e22a38fa31e117d9e58 (diff) | |
download | aports-138270d90873b54e7c58f52eb015b4afc37f16cd.tar.bz2 aports-138270d90873b54e7c58f52eb015b4afc37f16cd.tar.xz |
community/nextcloud: disable integrity check as default
It's unnecessary, APK ensures integrity of all installed files, and
problematic (we need to patch some files).
Diffstat (limited to 'community/nextcloud/disable-integrity-check-as-default.patch')
-rw-r--r-- | community/nextcloud/disable-integrity-check-as-default.patch | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/community/nextcloud/disable-integrity-check-as-default.patch b/community/nextcloud/disable-integrity-check-as-default.patch new file mode 100644 index 0000000000..87108c600a --- /dev/null +++ b/community/nextcloud/disable-integrity-check-as-default.patch @@ -0,0 +1,15 @@ +We patch some files and Nextcloud's integrity check doesn't like it... +APK ensures integrity of all installed files, so this Nextcloud's integrity +check doesn't add any value. + +--- a/lib/private/IntegrityCheck/Checker.php ++++ b/lib/private/IntegrityCheck/Checker.php +@@ -109,7 +109,7 @@ class Checker { + * too prominent. So please do not add it to config.sample.php. + */ + if ($this->config !== null) { +- $isIntegrityCheckDisabled = $this->config->getSystemValue('integrity.check.disabled', false); ++ $isIntegrityCheckDisabled = $this->config->getSystemValue('integrity.check.disabled', true); + } else { + $isIntegrityCheckDisabled = false; + } |