diff options
author | Roeland Jago Douma <roeland@famdouma.nl> | 2018-02-21 16:27:11 +0100 |
---|---|---|
committer | Robin Appelman <robin@icewind.nl> | 2018-02-26 14:54:21 +0100 |
commit | 9a201bd7fa866664f31c57ccb27b7956ffcdceed (patch) | |
tree | 271cfb992307c3a41122b3053eb90bd4ef864aac | |
parent | 812ea354d08d675b844d60096cdcd9269c3645b8 (diff) | |
download | nextcloud-server-9a201bd7fa866664f31c57ccb27b7956ffcdceed.tar.gz nextcloud-server-9a201bd7fa866664f31c57ccb27b7956ffcdceed.zip |
Use username + pass in config
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
-rw-r--r-- | tests/preseed-config.php | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/tests/preseed-config.php b/tests/preseed-config.php index 5277248b3d2..779868310dc 100644 --- a/tests/preseed-config.php +++ b/tests/preseed-config.php @@ -57,10 +57,13 @@ if (getenv('OBJECT_STORE') === 'swift') { 'arguments' => array( 'autocreate' => true, 'user' => [ - 'id' => 'swift', + 'name' => 'swift', + 'password' => 'swift', + 'domain' => [ + 'name' => 'default', + ] ], 'tenantName' => 'service', - 'password' => 'swift', 'serviceName' => 'swift', 'region' => 'regionOne', 'url' => "http://$swiftHost:5000/v3", |