[bitnami/rabbitmq] Release 3.10.13-debian-11-r11 (#20020)

Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>

Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>
This commit is contained in:
Bitnami Bot
2023-01-12 16:06:08 +01:00
committed by GitHub
parent 7d73c5e4e4
commit a2f3ed881b
3 changed files with 5 additions and 3 deletions

View File

@@ -4,7 +4,8 @@ ARG TARGETARCH
LABEL org.opencontainers.image.authors="https://bitnami.com/contact" \
org.opencontainers.image.description="Application packaged by Bitnami" \
org.opencontainers.image.ref.name="3.10.13-debian-11-r10" \
org.opencontainers.image.licenses="Apache-2.0" \
org.opencontainers.image.ref.name="3.10.13-debian-11-r11" \
org.opencontainers.image.source="https://github.com/bitnami/containers/tree/main/bitnami/rabbitmq" \
org.opencontainers.image.title="rabbitmq" \
org.opencontainers.image.vendor="VMware, Inc." \

View File

@@ -31,7 +31,7 @@ get_sematic_version () {
while [[ $i -lt $n ]]; do
if [[ -n "${BASH_REMATCH[$i]}" ]] && [[ "${BASH_REMATCH[$i]:0:1}" != '.' ]]; then
version_sections[$j]=${BASH_REMATCH[$i]}
version_sections[j]="${BASH_REMATCH[$i]}"
((j++))
fi
((i++))

View File

@@ -368,7 +368,7 @@ EOF
# When loading definitions, default vhost and user/pass won't be created: https://www.rabbitmq.com/definitions.html#import-on-boot
if ! is_boolean_yes "$RABBITMQ_LOAD_DEFINITIONS"; then
cat <<EOF
default_vhost = ${RABBITMQ_VHOST}
default_vhost = ${RABBITMQ_VHOST:?}
default_user = ${RABBITMQ_USERNAME}
EOF
# In most cases (i.e. container images), it is not a concern to specify the default password this way
@@ -860,6 +860,7 @@ rabbitmq_custom_init_scripts() {
"$f"
else
debug "Sourcing $f"
# shellcheck disable=SC1090
. "$f"
fi
;;