summaryrefslogtreecommitdiffstats
path: root/core/register_command.php
diff options
context:
space:
mode:
authorVictor Dubiniuk <victor.dubiniuk@gmail.com>2016-02-05 21:09:27 +0300
committerVictor Dubiniuk <victor.dubiniuk@gmail.com>2016-02-05 21:10:22 +0300
commitfef7fc12480207f13732f68f097d28dfbd84b2d5 (patch)
treebe946f15d082833e2ea06d22ba4547bc70b1d2aa /core/register_command.php
parent7568c402751f8387bcf8149cb303f02618205980 (diff)
downloadnextcloud-server-fef7fc12480207f13732f68f097d28dfbd84b2d5.tar.gz
nextcloud-server-fef7fc12480207f13732f68f097d28dfbd84b2d5.zip
CLI commands to check app and core signatures
Diffstat (limited to 'core/register_command.php')
-rw-r--r--core/register_command.php7
1 files changed, 7 insertions, 0 deletions
diff --git a/core/register_command.php b/core/register_command.php
index 5f9a2675873..2e9e80fe8d7 100644
--- a/core/register_command.php
+++ b/core/register_command.php
@@ -43,6 +43,13 @@ $application->add(new \OC\Core\Command\Integrity\SignCore(
\OC::$server->getIntegrityCodeChecker(),
new \OC\IntegrityCheck\Helpers\FileAccessHelper()
));
+$application->add(new \OC\Core\Command\Integrity\CheckApp(
+ \OC::$server->getIntegrityCodeChecker()
+));
+$application->add(new \OC\Core\Command\Integrity\CheckCore(
+ \OC::$server->getIntegrityCodeChecker()
+));
+
if (\OC::$server->getConfig()->getSystemValue('installed', false)) {
$application->add(new OC\Core\Command\App\Disable(\OC::$server->getAppManager()));