summaryrefslogtreecommitdiffstats
path: root/core/command/maintenance
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2015-03-11 15:47:24 +0100
committerThomas Müller <thomas.mueller@tmit.eu>2015-03-11 15:47:24 +0100
commit96b223676d6f3364530389d49d3518ac6748714d (patch)
treec8657c398a2608e0f366034aa5fd8ef267ca05d9 /core/command/maintenance
parentcba3ec2c7fb3282401a13c60c2d6f776a6a29e4b (diff)
downloadnextcloud-server-96b223676d6f3364530389d49d3518ac6748714d.tar.gz
nextcloud-server-96b223676d6f3364530389d49d3518ac6748714d.zip
Don't play with config values ...
Diffstat (limited to 'core/command/maintenance')
-rw-r--r--core/command/maintenance/install.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/core/command/maintenance/install.php b/core/command/maintenance/install.php
index 92a28425e50..eecdb08e620 100644
--- a/core/command/maintenance/install.php
+++ b/core/command/maintenance/install.php
@@ -40,9 +40,8 @@ class Install extends Command {
protected function execute(InputInterface $input, OutputInterface $output) {
// validate the environment
- $this->config->setSystemValue('supportedDatabases', ['sqlite', 'mysql', 'pgsql', 'oci']);
$setupHelper = new Setup($this->config, \OC::$server->getIniWrapper(), \OC::$server->getL10N('lib'), new \OC_Defaults());
- $sysInfo = $setupHelper->getSystemInfo();
+ $sysInfo = $setupHelper->getSystemInfo(true);
$errors = $sysInfo['errors'];
if (count($errors) > 0) {
$this->printErrors($output, $errors);