We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e6192ac commit c2d4f1aCopy full SHA for c2d4f1a
test/cluster/proxy.sh
@@ -14,6 +14,7 @@ jclouds.regions=us-west-2
14
EOF
15
16
PROXY_BIN="java -DLOG_LEVEL=trace -Djclouds.wire=debug -jar s3proxy.jar --properties s3proxy.properties"
17
+export S3CMD_ARGS="--access_key=foo --secret_key=bar"
18
export AWS_ACCESS_KEY_ID=foo
19
export AWS_SECRET_ACCESS_KEY=bar
20
export ENDPOINT=http://localhost:$PROXY_PORT
@@ -28,13 +29,14 @@ sleep 15
28
29
30
_kill_s3proxy() {
31
echo "=== Kill s3proxy"
- # kill -9 $PROXY_PID
32
+ kill -9 $PROXY_PID
33
}
34
35
echo "=== Create s3://test"
36
37
_s3cmd() {
38
s3cmd \
39
+ $S3CMD_ARGS \
40
--signature-v2 \
41
--no-ssl \
42
--host-bucket="" \
0 commit comments