forked from Deuxfleurs/garage
Jill
b45dcc1925
Closes #64. Reviewed-on: Deuxfleurs/garage#156 Co-authored-by: Jill <kokakiwi@deuxfleurs.fr> Co-committed-by: Jill <kokakiwi@deuxfleurs.fr>
22 lines
470 B
Bash
22 lines
470 B
Bash
ACCESS_KEY=`cat /tmp/garage.s3 |cut -d' ' -f1`
|
|
SECRET_KEY=`cat /tmp/garage.s3 |cut -d' ' -f2`
|
|
|
|
mkdir -p /tmp/garage.mc/certs/CAs
|
|
|
|
cat > /tmp/garage.mc/config.json <<EOF
|
|
{
|
|
"version": "10",
|
|
"aliases": {
|
|
"garage": {
|
|
"url": "http://127.0.0.1:3911",
|
|
"accessKey": "$ACCESS_KEY",
|
|
"secretKey": "$SECRET_KEY",
|
|
"api": "S3v4",
|
|
"path": "auto"
|
|
}
|
|
}
|
|
}
|
|
EOF
|
|
|
|
function mc { command mc --insecure --config-dir /tmp/garage.mc $@ ; }
|
|
mc --version
|