mirror of
https://github.com/versity/versitygw.git
synced 2026-02-10 04:10:07 +00:00
36 lines
1.0 KiB
Bash
36 lines
1.0 KiB
Bash
#!/usr/bin/env bash
|
|
|
|
# Copyright 2024 Versity Software
|
|
# This file is licensed under the Apache License, Version 2.0
|
|
# (the "License"); you may not use this file except in compliance
|
|
# with the License. You may obtain a copy of the License at
|
|
#
|
|
# http:#www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing,
|
|
# software distributed under the License is distributed on an
|
|
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
# KIND, either express or implied. See the License for the
|
|
# specific language governing permissions and limitations
|
|
# under the License.
|
|
|
|
list_check_buckets_rest() {
|
|
if ! list_buckets "rest"; then
|
|
log 2 "error listing buckets"
|
|
return 1
|
|
fi
|
|
bucket_found=false
|
|
# shellcheck disable=SC2154
|
|
for bucket in "${bucket_array[@]}"; do
|
|
log 5 "bucket: $bucket"
|
|
if [[ $bucket == "$BUCKET_ONE_NAME" ]]; then
|
|
bucket_found=true
|
|
break
|
|
fi
|
|
done
|
|
if [[ $bucket_found == "false" ]]; then
|
|
log 2 "bucket not found"
|
|
return 1
|
|
fi
|
|
return 0
|
|
} |