feat: minio-upload multi target
This commit is contained in:
parent
0ad61179b5
commit
24469d6105
1 changed files with 6 additions and 4 deletions
|
@ -35,13 +35,15 @@ secret_key=$3
|
||||||
local_path=$4
|
local_path=$4
|
||||||
remote_path=$5
|
remote_path=$5
|
||||||
|
|
||||||
info "Will upload $local_path to $remote_path"
|
|
||||||
|
|
||||||
mc alias set s3 $url $access_key $secret_key
|
mc alias set s3 $url $access_key $secret_key
|
||||||
ok_or_die "Could not set mc alias"
|
ok_or_die "Could not set mc alias"
|
||||||
|
|
||||||
mc cp -r $local_path s3/$remote_path
|
IFS=' ' read -r -a remote_paths <<< "$remote_path"
|
||||||
ok_or_die "Could not upload object"
|
for rpath in "${remote_paths[@]}"; do
|
||||||
|
info "Will upload $local_path to $rpath"
|
||||||
|
mc cp -r "$local_path" "$rpath"
|
||||||
|
ok_or_die "Could not upload object"
|
||||||
|
done
|
||||||
|
|
||||||
if [[ $# -eq 6 ]] ; then
|
if [[ $# -eq 6 ]] ; then
|
||||||
if [[ $6 -eq 1 ]] ; then
|
if [[ $6 -eq 1 ]] ; then
|
||||||
|
|
Loading…
Add table
Reference in a new issue