From: Thomas Müller Date: Wed, 11 Mar 2015 13:29:22 +0000 (+0100) Subject: Setting oci as supported database X-Git-Tag: v8.1.0alpha1~306^2~1 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=cba3ec2c7fb3282401a13c60c2d6f776a6a29e4b;p=nextcloud-server.git Setting oci as supported database --- 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'];