diff options
-rw-r--r-- | community/nextcloud/APKBUILD | 1 | ||||
-rw-r--r-- | community/nextcloud/disable-integrity-check-as-default.patch | 15 |
2 files changed, 16 insertions, 0 deletions
diff --git a/community/nextcloud/APKBUILD b/community/nextcloud/APKBUILD index 56ffa87c8f..200ce0057d 100644 --- a/community/nextcloud/APKBUILD +++ b/community/nextcloud/APKBUILD @@ -17,6 +17,7 @@ subpackages="$pkgname-initscript $pkgname-mysql $pkgname-pgsql $pkgname-sqlite source="https://download.nextcloud.com/server/releases/$pkgname-$pkgver.zip nextcloud10-dont-chmod-config.patch dont-update-htaccess.patch + disable-integrity-check-as-default.patch app-encryption-info-add-mcrypt.patch $pkgname-config.php $pkgname.logrotate 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; + } |