diff options
author | Jörn Friedrich Dreyer <jfd@butonic.de> | 2014-06-13 17:22:21 +0200 |
---|---|---|
committer | Jörn Friedrich Dreyer <jfd@butonic.de> | 2014-06-18 12:53:20 +0200 |
commit | 5722e31d1a277199e9b8ae85a21685abf3436418 (patch) | |
tree | b06e4bc30229a1d2f519190b782403a5871b9ca6 /config | |
parent | 1410cb10b4cb31a52901ee12e38a2c27d2177cf3 (diff) | |
download | nextcloud-server-5722e31d1a277199e9b8ae85a21685abf3436418.tar.gz nextcloud-server-5722e31d1a277199e9b8ae85a21685abf3436418.zip |
add autocreate config option for containers, implement autocreate and delete of containers, use generated container names for tests
Diffstat (limited to 'config')
-rwxr-xr-x | config/config.sample.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/config/config.sample.php b/config/config.sample.php index da7d1c38220..f58d09f16d0 100755 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -320,6 +320,7 @@ $CONFIG = array( 'username' => 'facebook100000123456789', // trystack will user your facebook id as the user name 'password' => 'Secr3tPaSSWoRdt7', // in the trystack dashboard go to user -> settings -> API Password to generate a password 'container' => 'owncloud', // must already exist in the objectstore, name can be different + 'autocreate' => true, // create the container if it does not exist. default is false 'region' => 'RegionOne', //required, dev-/trystack defaults to 'RegionOne' 'url' => 'http://8.21.28.222:5000/v2.0', // The Identity / Keystone endpoint 'tenantName' => 'facebook100000123456789', // required on dev-/trystack |