aboutsummaryrefslogtreecommitdiff
path: root/script/dev-env-mc.sh
blob: 3f58b0a8b657f73c8cdad4cfe32bcec1dc5ee9c8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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