mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 21:37:15 +02:00
It's unnecessary, APK ensures integrity of all installed files, and problematic (we need to patch some files).
16 lines
661 B
Diff
16 lines
661 B
Diff
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;
|
|
}
|