summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--core/command/maintenance/install.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/core/command/maintenance/install.php b/core/command/maintenance/install.php
index e92a546daac..92a28425e50 100644
--- a/core/command/maintenance/install.php
+++ b/core/command/maintenance/install.php
@@ -40,6 +40,7 @@ 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();
$errors = $sysInfo['errors'];