2.32.0-debian-10-r60 release

This commit is contained in:
Bitnami Bot
2021-08-12 22:37:11 +00:00
parent 1fea55c4c0
commit d0b846a996
3 changed files with 18 additions and 2 deletions

View File

@@ -14,7 +14,7 @@ RUN /build/bitnami-user.sh
COPY rootfs /
ENV BITNAMI_APP_NAME="git" \
BITNAMI_IMAGE_VERSION="2.32.0-debian-10-r59" \
BITNAMI_IMAGE_VERSION="2.32.0-debian-10-r60" \
NSS_WRAPPER_LIB="/opt/bitnami/common/lib/libnss_wrapper.so" \
PATH="/opt/bitnami/common/bin:/opt/bitnami/git/bin:$PATH"

View File

@@ -91,6 +91,22 @@ is_true_false_value() {
fi
}
########################
# Check if the provided argument is a boolean 1/0 value
# Arguments:
# $1 - Value to check
# Returns:
# Boolean
#########################
is_1_0_value() {
local -r bool="${1:-}"
if [[ "$bool" =~ ^[10]$ ]]; then
true
else
false
fi
}
########################
# Check if the provided argument is an empty string or not defined
# Arguments: