mirror of
https://github.com/deuxfleurs-org/garage.git
synced 2026-07-26 07:58:14 +00:00
936e53fe2f
Fix invalid references to the `garage key new` commands. Mainly on documentation side except one script: `script/dev-bucket.sh`. This is my first pull request ever. I'm open for feedback, let me know if I should change anything about this PR. Co-authored-by: deanqx <110404616+deanqx@users.noreply.github.com> Reviewed-on: https://git.deuxfleurs.fr/Deuxfleurs/garage/pulls/1487
37 lines
1.4 KiB
Bash
Executable File
37 lines
1.4 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -ex
|
|
|
|
SCRIPT_FOLDER="`dirname \"$0\"`"
|
|
REPO_FOLDER="${SCRIPT_FOLDER}/../"
|
|
GARAGE_DEBUG="${REPO_FOLDER}/target/debug/"
|
|
GARAGE_RELEASE="${REPO_FOLDER}/target/release/"
|
|
NIX_RELEASE="${REPO_FOLDER}/result/bin/"
|
|
PATH="${GARAGE_DEBUG}:${GARAGE_RELEASE}:${NIX_RELEASE}:$PATH"
|
|
|
|
if [ -z "$GARAGE_BIN" ]; then
|
|
GARAGE_BIN=$(which garage || exit 1)
|
|
echo -en "Found garage at: ${GARAGE_BIN}\n"
|
|
else
|
|
echo -en "Using garage binary at: ${GARAGE_BIN}\n"
|
|
fi
|
|
|
|
$GARAGE_BIN -c /tmp/config.1.toml bucket create eprouvette
|
|
if [ "$GARAGE_OLDVER" = "v08" ]; then
|
|
KEY_INFO=$($GARAGE_BIN -c /tmp/config.1.toml key create opérateur)
|
|
ACCESS_KEY=`echo $KEY_INFO|grep -Po 'GK[a-f0-9]+'`
|
|
SECRET_KEY=`echo $KEY_INFO|grep -Po 'Secret key: [a-f0-9]+'|grep -Po '[a-f0-9]+$'`
|
|
elif [ "$GARAGE_OLDVER" = "v1" ]; then
|
|
KEY_INFO=$($GARAGE_BIN -c /tmp/config.1.toml key create opérateur)
|
|
ACCESS_KEY=`echo $KEY_INFO|grep -Po 'GK[a-f0-9]+'`
|
|
SECRET_KEY=`echo $KEY_INFO|grep -Po 'Secret key: [a-f0-9]+'|grep -Po '[a-f0-9]+$'`
|
|
else
|
|
KEY_INFO=$($GARAGE_BIN -c /tmp/config.1.toml json-api CreateKey '{"name":"opérateur"}')
|
|
ACCESS_KEY=`echo $KEY_INFO|jq -r .accessKeyId`
|
|
SECRET_KEY=`echo $KEY_INFO|jq -r .secretAccessKey`
|
|
fi
|
|
$GARAGE_BIN -c /tmp/config.1.toml bucket allow eprouvette --read --write --owner --key $ACCESS_KEY
|
|
echo "$ACCESS_KEY $SECRET_KEY" > /tmp/garage.s3
|
|
|
|
echo "Bucket s3://eprouvette created. Credentials stored in /tmp/garage.s3."
|