[bitnami/neo4j] Release 4.4.16-debian-11-r9 (#20385)

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-16 10:28:34 +01:00 committed by GitHub
parent 8aa8120fa6
commit ecadfed280
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 9 additions and 5 deletions

View File

@ -6,7 +6,7 @@ ARG TARGETARCH
LABEL org.opencontainers.image.authors="https://bitnami.com/contact" \
org.opencontainers.image.description="Application packaged by Bitnami" \
org.opencontainers.image.licenses="Apache-2.0" \
org.opencontainers.image.ref.name="4.4.16-debian-11-r8" \
org.opencontainers.image.ref.name="4.4.16-debian-11-r9" \
org.opencontainers.image.source="https://github.com/bitnami/containers/tree/main/bitnami/neo4j" \
org.opencontainers.image.title="neo4j" \
org.opencontainers.image.vendor="VMware, Inc." \
@ -24,7 +24,7 @@ RUN install_packages ca-certificates curl jq procps zlib1g
RUN mkdir -p /tmp/bitnami/pkg/cache/ && cd /tmp/bitnami/pkg/cache/ && \
COMPONENTS=( \
"java-11.0.17-7-2-linux-${OS_ARCH}-debian-11" \
"neo4j-4.4.16-1-linux-${OS_ARCH}-debian-11" \
"neo4j-4.4.16-2-linux-${OS_ARCH}-debian-11" \
"gosu-1.16.0-0-linux-${OS_ARCH}-debian-11" \
) && \
for COMPONENT in "${COMPONENTS[@]}"; do \

View File

@ -15,9 +15,9 @@
},
"neo4j": {
"arch": "amd64",
"digest": "777db831af127d9b494bd0cf4f9a89306987995a9298ac6a2f157a42489f6c94",
"digest": "d1b8b4e04300cc7f48c903795c69908fdd4f9a11f71ef0b77225da4bdea4ccf4",
"distro": "debian-11",
"type": "NAMI",
"version": "4.4.16-1"
"version": "4.4.16-2"
}
}

View File

@ -158,7 +158,11 @@ neo4j_conf_set() {
# Check if the configuration exists in the file
if grep -q -E "$sanitized_pattern" "$file"; then
# It exists, so replace the line
replace_in_file "$file" "$sanitized_pattern" "$entry"
if [[ "${key}" =~ jvm.additional ]]; then
append_file_after_last_match "$file" "$sanitized_pattern" "$entry"
else
replace_in_file "$file" "$sanitized_pattern" "$entry"
fi
else
echo "$entry" >>"$file"
fi