-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathentrypoint.sh
executable file
·54 lines (43 loc) · 1000 Bytes
/
entrypoint.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#!/bin/bash
LOG_NAME="minio"
info() {
[ -t 1 ] && [ -n "$TERM" ] \
&& echo "$(tput setaf 2)[$LOG_NAME]$(tput sgr0) $*" \
|| echo "[$LOG_NAME] $*"
}
err() {
[ -t 2 ] && [ -n "$TERM" ] \
&& echo -e "$(tput setaf 1)[$LOG_NAME]$(tput sgr0) $*" 1>&2 \
|| echo -e "[$LOG_NAME] $*" 1>&2
}
die() {
err "$@"
exit 1
}
ok_or_die() {
if [ $? -ne 0 ]; then
die $1
fi
}
if [[ $# -lt 5 ]] ; then
die "Usage: $0 url access_key secret_key local_path remote_path"
fi
url=$1
access_key=$2
secret_key=$3
local_path=$4
remote_path=$5
info "Will upload $local_path to $remote_path"
mc alias set s3 $url $access_key $secret_key
ok_or_die "Could not set mc alias"
mc cp -r $local_path s3/$remote_path
ok_or_die "Could not upload object"
if [[ $# -eq 6 ]] ; then
if [[ $6 -eq 1 ]] ; then
info "Will make $remote_path public"
mc anonymous -r set download s3/$remote_path
else
info "Will make $remote_path private"
mc anonymous -r set private s3/$remote_path || true
fi
fi