Use console.php entry point for file scanning from console

This commit is contained in:
Bart Visscher 2013-08-02 15:36:54 +02:00
parent 3500c39567
commit a7a05b321a
2 changed files with 25 additions and 2 deletions

View File

@ -1,7 +1,5 @@
<?php
require_once __DIR__ . '/lib/base.php';
if (!OC::$CLI) {
echo "This script can be run from the command line only\n";
return;

25
console.php Normal file
View File

@ -0,0 +1,25 @@
<?php
/**
* Copyright (c) 2013 Bart Visscher <bartv@thisnet.nl>
* This file is licensed under the Affero General Public License version 3 or
* later.
* See the COPYING-README file.
*/
$RUNTIME_NOAPPS = true;
require_once 'lib/base.php';
// Don't do anything if ownCloud has not been installed yet
if (!OC_Config::getValue('installed', false)) {
exit(0);
}
if (OC::$CLI) {
if ($argc > 1 && $argv[1] === 'files:scan') {
require_once 'apps/files/console/scan.php';
}
}
else
{
echo "This script can be run from the command line only\n";
}