diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2015-03-11 14:29:22 +0100 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2015-03-11 14:29:22 +0100 |
commit | cba3ec2c7fb3282401a13c60c2d6f776a6a29e4b (patch) | |
tree | af2120d09a333da113bae90ed711a297b03f1849 /core/command | |
parent | ad97ceb787ed859e01305d350acce2739d36be53 (diff) | |
download | nextcloud-server-cba3ec2c7fb3282401a13c60c2d6f776a6a29e4b.tar.gz nextcloud-server-cba3ec2c7fb3282401a13c60c2d6f776a6a29e4b.zip |
Setting oci as supported database
Diffstat (limited to 'core/command')
-rw-r--r-- | core/command/maintenance/install.php | 1 |
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']; |