Skip to content
Snippets Groups Projects
Commit 058c15a9 authored by Thomas Müller's avatar Thomas Müller
Browse files

Read configuratons for external filesystem test from a private place.

This will help not to accidentially push private data and enable testing on our ci server.
parent 81b6cab9
Branches
No related tags found
No related merge requests found
<?php
// in case there are private configurations in the users home -> use them
$privateConfigFile = $_SERVER['HOME'] . '/owncloud-extfs-test-config.php';
if (file_exists($privateConfigFile)) {
$config = include($privateConfigFile);
return $config;
}
// this is now more a template now for your private configurations
return array(
'ftp'=>array(
'run'=>false,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment