]> source.dussan.org Git - nextcloud-server.git/commit
Add hidden config switch to disable code integrity checking
authorLukas Reschke <lukas@owncloud.com>
Tue, 12 Jan 2016 17:41:11 +0000 (18:41 +0100)
committerLukas Reschke <lukas@owncloud.com>
Tue, 12 Jan 2016 17:48:36 +0000 (18:48 +0100)
commit08e73d2c8f3c9cbed39a5b632907f8570d23440a
treea8746ac0139d24dec71846551ef88b14960767f9
parenteac5d9fb3a52932fafdb200a2cf5d50fe9f1c759
Add hidden config switch to disable code integrity checking

This adds a hidden config flag that allows somebody to disable the code integrity check. If `integrity.check.disabled` is set to `true` in the config file:

1. The integrity check functions will return always an empty result
2. The integrity check is not performed when installing apps
3. The integrity check is not performed when updating apps
4. The integrity check is not performed when updating the core

Furthermore this adds support for a list of channels that the code checker will run on. At the moment this is only stable because I didn't want to break any build scripts that we have. Once we have a proper CA setup and updated the build process to sign the releases we can add the RC, alpha, beta as well as daily releases. So everything except "git" basically.
lib/private/integritycheck/checker.php
lib/private/integritycheck/helpers/environmenthelper.php
lib/private/updater.php
tests/lib/integritycheck/checkertest.php
tests/lib/integritycheck/helpers/EnvironmentHelperTest.php