diff options
Diffstat (limited to 'tests/preseed-config.php')
-rw-r--r-- | tests/preseed-config.php | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/tests/preseed-config.php b/tests/preseed-config.php new file mode 100644 index 00000000000..fbf60ad2e28 --- /dev/null +++ b/tests/preseed-config.php @@ -0,0 +1,19 @@ +<?php +$CONFIG = array ( + "appstoreenabled" => false, + 'apps_paths' => + array ( + 0 => + array ( + 'path' => '/home/thomas/Development/owncloud/core/apps', + 'url' => '/apps', + 'writable' => false, + ), + 1 => + array ( + 'path' => '/home/thomas/Development/owncloud/core/apps2', + 'url' => '/apps2', + 'writable' => false, + ) + ), +); |