[bitnami/nginx-intel] Release 0.4.9-debian-11-r18 (#19870)

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 00:01:47 +01:00 committed by GitHub
parent daec3133c1
commit b0608fe96d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 10 additions and 9 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="0.4.9-debian-11-r17" \
org.opencontainers.image.licenses="Apache-2.0" \
org.opencontainers.image.ref.name="0.4.9-debian-11-r18" \
org.opencontainers.image.source="https://github.com/bitnami/containers/tree/main/bitnami/nginx-intel" \
org.opencontainers.image.title="nginx-intel" \
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

@ -252,14 +252,14 @@ ensure_nginx_app_configuration_exists() {
--server-aliases)
var_name="$(echo "$1" | sed -e "s/^--//" -e "s/-/_/g")"
shift
read -r -a "$var_name" <<<"$1"
read -r -a "${var_name?}" <<<"$1"
;;
--disable | \
--disable-http | \
--disable-https)
var_name="$(echo "$1" | sed -e "s/^--//" -e "s/-/_/g")"
export "${var_name}=yes"
export "${var_name?}=yes"
;;
--type | \
--server-name | \
@ -273,7 +273,7 @@ ensure_nginx_app_configuration_exists() {
var_name="$(echo "$1" | sed -e "s/^--//" -e "s/-/_/g")"
shift
export "${var_name}"="$1"
export "${var_name?}"="$1"
;;
*)
echo "Invalid command line flag $1" >&2
@ -419,7 +419,7 @@ ensure_nginx_prefix_configuration_exists() {
var_name="$(echo "$1" | sed -e "s/^--//" -e "s/-/_/g")"
shift
declare "${var_name}"="$1"
declare "${var_name?}"="$1"
;;
*)
echo "Invalid command line flag $1" >&2
@ -499,7 +499,7 @@ nginx_update_app_configuration() {
)
var_name="$(echo "$1" | sed -e "s/^--//" -e "s/-/_/g")"
shift
read -r -a "$var_name" <<<"$1"
read -r -a "${var_name?}" <<<"$1"
;;
# Common flags
--enable-http \
@ -508,7 +508,7 @@ nginx_update_app_configuration() {
| --disable-https \
)
var_name="$(echo "$1" | sed -e "s/^--//" -e "s/-/_/g")"
declare "${var_name}=yes"
declare "${var_name?}=yes"
;;
--server-name \
| --http-port \
@ -516,7 +516,7 @@ nginx_update_app_configuration() {
)
var_name="$(echo "$1" | sed -e "s/^--//" -e "s/-/_/g")"
shift
declare "${var_name}=${1}"
declare "${var_name?}=${1}"
;;
*)