diff options
author | Quentin <quentin@deuxfleurs.fr> | 2020-12-10 20:19:22 +0100 |
---|---|---|
committer | Quentin <quentin@deuxfleurs.fr> | 2020-12-10 20:19:22 +0100 |
commit | 1119d466e762b6fe11eb939811c4f24b27a0404f (patch) | |
tree | 325435f428ed55422caaae5c7bd03578a661d70e /script | |
parent | e8c12072cefa37d9aec023fd6087b2d190ee3e4c (diff) | |
download | garage-1119d466e762b6fe11eb939811c4f24b27a0404f.tar.gz garage-1119d466e762b6fe11eb939811c4f24b27a0404f.zip |
Fix S3 command
Diffstat (limited to 'script')
-rw-r--r-- | script/dev-env-s3cmd.sh | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/script/dev-env-s3cmd.sh b/script/dev-env-s3cmd.sh index 15f08e2e..88d2941f 100644 --- a/script/dev-env-s3cmd.sh +++ b/script/dev-env-s3cmd.sh @@ -6,9 +6,14 @@ GARAGE_DEBUG="${REPO_FOLDER}/target/debug/" GARAGE_RELEASE="${REPO_FOLDER}/target/release/" PATH="${GARAGE_DEBUG}:${GARAGE_RELEASE}:$PATH" -export AWS_ACCESS_KEY_ID=`cat /tmp/garage.s3 |cut -d' ' -f1` -export AWS_SECRET_ACCESS_KEY=`cat /tmp/garage.s3 |cut -d' ' -f2` -export AWS_DEFAULT_REGION='garage' +ACCESS_KEY=`cat /tmp/garage.s3 |cut -d' ' -f1` +SECRET_KEY=`cat /tmp/garage.s3 |cut -d' ' -f2` + +alias s3grg="s3cmd \ + --host 127.0.0.1:3911 \ + --host-bucket 127.0.0.1:3911 \ + --access_key=$ACCESS_KEY \ + --secret_key=$SECRET_KEY \ + --region=garage \ + --no-ssl" -alias s3grg="aws s3 \ - --endpoint-url http://127.0.0.1:3911" |