Test garage list & delete commands
This commit is contained in:
parent
5c3dd9c74a
commit
a12930075d
1 changed files with 9 additions and 0 deletions
|
@ -13,6 +13,10 @@ ${SCRIPT_FOLDER}/dev-configure.sh
|
||||||
${SCRIPT_FOLDER}/dev-bucket.sh
|
${SCRIPT_FOLDER}/dev-bucket.sh
|
||||||
source ${SCRIPT_FOLDER}/dev-env.sh
|
source ${SCRIPT_FOLDER}/dev-env.sh
|
||||||
|
|
||||||
|
garage status
|
||||||
|
garage key list
|
||||||
|
garage bucket list
|
||||||
|
|
||||||
dd if=/dev/urandom of=/tmp/garage.1.rnd bs=512k count=1
|
dd if=/dev/urandom of=/tmp/garage.1.rnd bs=512k count=1
|
||||||
dd if=/dev/urandom of=/tmp/garage.2.rnd bs=1M count=5
|
dd if=/dev/urandom of=/tmp/garage.2.rnd bs=1M count=5
|
||||||
dd if=/dev/urandom of=/tmp/garage.3.rnd bs=1M count=10
|
dd if=/dev/urandom of=/tmp/garage.3.rnd bs=1M count=10
|
||||||
|
@ -22,6 +26,11 @@ for idx in $(seq 1 3); do
|
||||||
s3grg ls s3://eprouvette
|
s3grg ls s3://eprouvette
|
||||||
s3grg cp s3://eprouvette/garage.$idx.rnd /tmp/garage.$idx.dl
|
s3grg cp s3://eprouvette/garage.$idx.rnd /tmp/garage.$idx.dl
|
||||||
diff /tmp/garage.$idx.rnd /tmp/garage.$idx.dl
|
diff /tmp/garage.$idx.rnd /tmp/garage.$idx.dl
|
||||||
|
s3grg rm s3://eprouvette/garage.$idx.rnd
|
||||||
done
|
done
|
||||||
|
|
||||||
|
garage bucket deny --read --write eprouvette --key $AWS_ACCESS_KEY_ID
|
||||||
|
garage bucket delete --yes eprouvette
|
||||||
|
garage key delete --yes $AWS_ACCESS_KEY_ID
|
||||||
|
|
||||||
echo "success"
|
echo "success"
|
||||||
|
|
Loading…
Reference in a new issue