From eb09a25dd9a8d93621d84dfaf50fe7047cf88ec4 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 11 Apr 2023 02:16:43 +0200 Subject: [PATCH] [bitnami/wavefront-proxy] Release 12.3.0-debian-11-r0 (#29927) Signed-off-by: Bitnami Containers --- .../wavefront-proxy/12/debian-11/Dockerfile | 10 ++++---- .../opt/bitnami/.bitnami_components.json | 2 +- .../opt/bitnami/scripts/libwebserver.sh | 24 +++++++++---------- .../12/debian-11/tags-info.yaml | 2 +- 4 files changed, 19 insertions(+), 19 deletions(-) diff --git a/bitnami/wavefront-proxy/12/debian-11/Dockerfile b/bitnami/wavefront-proxy/12/debian-11/Dockerfile index 98dce8c2f2c9..0c647128cad1 100644 --- a/bitnami/wavefront-proxy/12/debian-11/Dockerfile +++ b/bitnami/wavefront-proxy/12/debian-11/Dockerfile @@ -4,13 +4,13 @@ ARG JAVA_EXTRA_SECURITY_DIR="/bitnami/java/extra-security" ARG TARGETARCH LABEL org.opencontainers.image.base.name="docker.io/bitnami/minideb:bullseye" \ - org.opencontainers.image.created="2023-04-07T22:11:36Z" \ + org.opencontainers.image.created="2023-04-10T23:46:45Z" \ org.opencontainers.image.description="Application packaged by VMware, Inc" \ org.opencontainers.image.licenses="Apache-2.0" \ - org.opencontainers.image.ref.name="12.1.0-debian-11-r28" \ + org.opencontainers.image.ref.name="12.3.0-debian-11-r0" \ org.opencontainers.image.title="wavefront-proxy" \ org.opencontainers.image.vendor="VMware, Inc." \ - org.opencontainers.image.version="12.1.0" + org.opencontainers.image.version="12.3.0" ENV HOME="/" \ OS_ARCH="${TARGETARCH:-amd64}" \ @@ -24,7 +24,7 @@ RUN install_packages ca-certificates curl procps zlib1g RUN mkdir -p /tmp/bitnami/pkg/cache/ && cd /tmp/bitnami/pkg/cache/ && \ COMPONENTS=( \ "java-11.0.18-10-4-linux-${OS_ARCH}-debian-11" \ - "wavefront-proxy-12.1.0-3-linux-${OS_ARCH}-debian-11" \ + "wavefront-proxy-12.3.0-0-linux-${OS_ARCH}-debian-11" \ "gosu-1.16.0-5-linux-${OS_ARCH}-debian-11" \ ) && \ for COMPONENT in "${COMPONENTS[@]}"; do \ @@ -44,7 +44,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/java/postunpack.sh RUN /opt/bitnami/scripts/wavefront-proxy/postunpack.sh -ENV APP_VERSION="12.1.0" \ +ENV APP_VERSION="12.3.0" \ BITNAMI_APP_NAME="wavefront-proxy" \ JAVA_HOME="/opt/bitnami/java" \ PATH="/opt/bitnami/java/bin:/opt/bitnami/common/bin:$PATH" diff --git a/bitnami/wavefront-proxy/12/debian-11/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/wavefront-proxy/12/debian-11/prebuildfs/opt/bitnami/.bitnami_components.json index 041832025be8..5e673ae5e15a 100644 --- a/bitnami/wavefront-proxy/12/debian-11/prebuildfs/opt/bitnami/.bitnami_components.json +++ b/bitnami/wavefront-proxy/12/debian-11/prebuildfs/opt/bitnami/.bitnami_components.json @@ -15,6 +15,6 @@ "arch": "amd64", "distro": "debian-11", "type": "NAMI", - "version": "12.1.0-3" + "version": "12.3.0-0" } } \ No newline at end of file diff --git a/bitnami/wavefront-proxy/12/debian-11/prebuildfs/opt/bitnami/scripts/libwebserver.sh b/bitnami/wavefront-proxy/12/debian-11/prebuildfs/opt/bitnami/scripts/libwebserver.sh index 5860791219cf..94745ebe419e 100644 --- a/bitnami/wavefront-proxy/12/debian-11/prebuildfs/opt/bitnami/scripts/libwebserver.sh +++ b/bitnami/wavefront-proxy/12/debian-11/prebuildfs/opt/bitnami/scripts/libwebserver.sh @@ -112,10 +112,10 @@ is_web_server_running() { ######################### web_server_start() { info "Starting $(web_server_type) in background" - if [[ "$BITNAMI_SERVICE_MANAGER" = "monit" ]]; then - "${BITNAMI_ROOT_DIR}/scripts/$(web_server_type)/start.sh" - elif [[ "$BITNAMI_SERVICE_MANAGER" = "systemd" ]]; then + if [[ "${BITNAMI_SERVICE_MANAGER:-}" = "systemd" ]]; then systemctl start "bitnami.$(web_server_type).service" + else + "${BITNAMI_ROOT_DIR}/scripts/$(web_server_type)/start.sh" fi } @@ -130,10 +130,10 @@ web_server_start() { ######################### web_server_stop() { info "Stopping $(web_server_type)" - if [[ "$BITNAMI_SERVICE_MANAGER" = "monit" ]]; then - "${BITNAMI_ROOT_DIR}/scripts/$(web_server_type)/stop.sh" - elif [[ "$BITNAMI_SERVICE_MANAGER" = "systemd" ]]; then + if [[ "${BITNAMI_SERVICE_MANAGER:-}" = "systemd" ]]; then systemctl stop "bitnami.$(web_server_type).service" + else + "${BITNAMI_ROOT_DIR}/scripts/$(web_server_type)/stop.sh" fi } @@ -148,10 +148,10 @@ web_server_stop() { ######################### web_server_restart() { info "Restarting $(web_server_type)" - if [[ "$BITNAMI_SERVICE_MANAGER" = "monit" ]]; then - "${BITNAMI_ROOT_DIR}/scripts/$(web_server_type)/restart.sh" - elif [[ "$BITNAMI_SERVICE_MANAGER" = "systemd" ]]; then + if [[ "${BITNAMI_SERVICE_MANAGER:-}" = "systemd" ]]; then systemctl restart "bitnami.$(web_server_type).service" + else + "${BITNAMI_ROOT_DIR}/scripts/$(web_server_type)/restart.sh" fi } @@ -165,10 +165,10 @@ web_server_restart() { # None ######################### web_server_reload() { - if [[ "$BITNAMI_SERVICE_MANAGER" = "monit" ]]; then - "${BITNAMI_ROOT_DIR}/scripts/$(web_server_type)/reload.sh" - elif [[ "$BITNAMI_SERVICE_MANAGER" = "systemd" ]]; then + if [[ "${BITNAMI_SERVICE_MANAGER:-}" = "systemd" ]]; then systemctl reload "bitnami.$(web_server_type).service" + else + "${BITNAMI_ROOT_DIR}/scripts/$(web_server_type)/reload.sh" fi } diff --git a/bitnami/wavefront-proxy/12/debian-11/tags-info.yaml b/bitnami/wavefront-proxy/12/debian-11/tags-info.yaml index 16466628fc02..13c0ce292ba7 100644 --- a/bitnami/wavefront-proxy/12/debian-11/tags-info.yaml +++ b/bitnami/wavefront-proxy/12/debian-11/tags-info.yaml @@ -1,5 +1,5 @@ rolling-tags: - "12" - 12-debian-11 -- 12.1.0 +- 12.3.0 - latest