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
No related branches found
No related tags found
No related merge requests found
<?php <?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( return array(
'ftp'=>array( 'ftp'=>array(
'run'=>false, 'run'=>false,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment