aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoeland Jago Douma <roeland@famdouma.nl>2018-02-21 16:27:11 +0100
committerRobin Appelman <robin@icewind.nl>2018-02-26 14:54:21 +0100
commit9a201bd7fa866664f31c57ccb27b7956ffcdceed (patch)
tree271cfb992307c3a41122b3053eb90bd4ef864aac
parent812ea354d08d675b844d60096cdcd9269c3645b8 (diff)
downloadnextcloud-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.php7
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",