[bitnami/ejbca] Release 7.11.0-debian-11-r19 (#28106)

Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>
This commit is contained in:
Bitnami Bot 2023-03-22 09:40:40 +01:00 committed by GitHub
parent 8a1686afc4
commit 7bc29b0857
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 54 additions and 22 deletions

View File

@ -4,10 +4,10 @@ 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-03-14T05:41:42Z" \
org.opencontainers.image.created="2023-03-22T07:06:10Z" \
org.opencontainers.image.description="Application packaged by VMware, Inc" \
org.opencontainers.image.licenses="Apache-2.0" \
org.opencontainers.image.ref.name="7.11.0-debian-11-r18" \
org.opencontainers.image.ref.name="7.11.0-debian-11-r19" \
org.opencontainers.image.title="ejbca" \
org.opencontainers.image.vendor="VMware, Inc." \
org.opencontainers.image.version="7.11.0"
@ -23,11 +23,11 @@ SHELL ["/bin/bash", "-o", "pipefail", "-c"]
RUN install_packages acl ca-certificates curl libaio1 libaudit1 libcap-ng0 libgcc-s1 libicu67 liblzma5 libncurses6 libpam0g libssl1.1 libstdc++6 libtinfo6 libxml2 procps zlib1g
RUN mkdir -p /tmp/bitnami/pkg/cache/ && cd /tmp/bitnami/pkg/cache/ && \
COMPONENTS=( \
"java-11.0.18-10-2-linux-${OS_ARCH}-debian-11" \
"wildfly-26.1.3-4-linux-${OS_ARCH}-debian-11" \
"mysql-client-10.6.12-1-linux-${OS_ARCH}-debian-11" \
"gosu-1.16.0-2-linux-${OS_ARCH}-debian-11" \
"ejbca-7.11.0-1-linux-${OS_ARCH}-debian-11" \
"java-11.0.18-10-3-linux-${OS_ARCH}-debian-11" \
"wildfly-26.1.3-5-linux-${OS_ARCH}-debian-11" \
"mysql-client-10.6.12-2-linux-${OS_ARCH}-debian-11" \
"gosu-1.16.0-3-linux-${OS_ARCH}-debian-11" \
"ejbca-7.11.0-2-linux-${OS_ARCH}-debian-11" \
) && \
for COMPONENT in "${COMPONENTS[@]}"; do \
if [ ! -f "${COMPONENT}.tar.gz" ]; then \

View File

@ -1,37 +1,37 @@
{
"ejbca": {
"arch": "amd64",
"digest": "6d24865a67065558556f3b2b5141d6022b2fda89515ce077566f9f3504b20064",
"digest": "538b548432bd1b85250733c0abfa56cd8c639661216b466d910ec43531e8af8b",
"distro": "debian-11",
"type": "NAMI",
"version": "7.11.0-1"
"version": "7.11.0-2"
},
"gosu": {
"arch": "amd64",
"digest": "f6056076afb745fd7d9d87d20f71e7248d63330352cf5ae0be2130b7f44a8cfa",
"digest": "bf2b90a31df691e3648c4a41190a926bb638c3a9fa1dfcde36623ce1bfaadc23",
"distro": "debian-11",
"type": "NAMI",
"version": "1.16.0-2"
"version": "1.16.0-3"
},
"java": {
"arch": "amd64",
"digest": "be7aa8950dacdcd96b5308a246b86665d364f70675564f157bfc7594b383af1f",
"digest": "fbdf266273a4dd4c5fc37c344462aa50047549aa2e63858ffee5594ea450fca5",
"distro": "debian-11",
"type": "NAMI",
"version": "11.0.18-10-2"
"version": "11.0.18-10-3"
},
"mysql-client": {
"arch": "amd64",
"digest": "dbc087bd90a6387956751464da45660229b3e7349b96099805e61dcbc2514853",
"digest": "6ed7c73b5e779521cf2f47a00ac54e6d2929213cb4eb3cbd9a4f12f84557c664",
"distro": "debian-11",
"type": "NAMI",
"version": "10.6.12-1"
"version": "10.6.12-2"
},
"wildfly": {
"arch": "amd64",
"digest": "0f276ac941c1812c562b5231b81dcfae354fb06bbd165cac471dc6f39bd2d720",
"digest": "d3846e48d559528a779072a0d10f4b34b031cf820a9b412a46a38d1f9a223b7c",
"distro": "debian-11",
"type": "NAMI",
"version": "26.1.3-4"
"version": "26.1.3-5"
}
}

View File

@ -281,6 +281,8 @@ remove_logrotate_conf() {
# --environment - Environment variable to define (multiple --environment options may be passed)
# --environment-file - Text file with environment variables
# --exec-start - Start command (required)
# --exec-start-pre - Pre-start command (optional)
# --exec-start-post - Post-start command (optional)
# --exec-stop - Stop command (optional)
# --exec-reload - Reload command (optional)
# --group - System group to start the service with
@ -292,6 +294,7 @@ remove_logrotate_conf() {
# --success-exit-status - Exit code that indicates a successful shutdown
# --type - Systemd unit type (defaults to forking)
# --user - System user to start the service with
# --working-directory - Working directory at which to start the service
# Returns:
# None
#########################
@ -307,6 +310,8 @@ generate_systemd_conf() {
local environment=""
local environment_file=""
local exec_start=""
local exec_start_pre=""
local exec_start_post=""
local exec_stop=""
local exec_reload=""
local restart="always"
@ -316,6 +321,7 @@ generate_systemd_conf() {
local limits_content=""
local success_exit_status=""
local custom_service_content=""
local working_directory=""
# Parse CLI flags
shift
while [[ "$#" -gt 0 ]]; do
@ -334,6 +340,7 @@ generate_systemd_conf() {
| --standard-error \
| --success-exit-status \
| --custom-service-content \
| --working-directory \
)
var_name="$(echo "$1" | sed -e "s/^--//" -e "s/-/_/g")"
shift
@ -345,11 +352,21 @@ generate_systemd_conf() {
shift
limits_content+="Limit${var_name^^}=${1:?"--limit-${var_name} value is missing"}"
;;
--exec-start-pre)
shift
[[ -n "$exec_start_pre" ]] && exec_start_pre+=$'\n'
exec_start_pre+="ExecStartPre=${1:?"--exec-start-pre value is missing"}"
;;
--exec-start-post)
shift
[[ -n "$exec_start_post" ]] && exec_start_post+=$'\n'
exec_start_post+="ExecStartPost=${1:?"--exec-start-post value is missing"}"
;;
--environment)
shift
# It is possible to add multiple environment lines
[[ -n "$environment" ]] && environment+=$'\n'
environment+="Environment=${1:?"environment" is missing}"
environment+="Environment=${1:?"--environment value is missing"}"
;;
*)
echo "Invalid command line flag ${1}" >&2
@ -376,8 +393,21 @@ PartOf=bitnami.service
[Service]
Type=${type}
ExecStart=${exec_start}
EOF
if [[ -n "$working_directory" ]]; then
cat >> "$service_file" <<< "WorkingDirectory=$working_directory"
fi
if [[ -n "$exec_start_pre" ]]; then
# This variable may contain multiple ExecStartPre= directives
cat >> "$service_file" <<< "$exec_start_pre"
fi
if [[ -n "$exec_start" ]]; then
cat >> "$service_file" <<< "ExecStart=${exec_start}"
fi
if [[ -n "$exec_start_post" ]]; then
# This variable may contain multiple ExecStartPost= directives
cat >> "$service_file" <<< "$exec_start_post"
fi
# Optional stop and reload commands
if [[ -n "$exec_stop" ]]; then
cat >> "$service_file" <<< "ExecStop=${exec_stop}"
@ -399,8 +429,9 @@ EOF
if [[ -n "$restart" ]]; then
cat >> "$service_file" <<< "Restart=${restart}"
fi
# Environment flags (may be specified multiple times in a unit)
# Environment flags
if [[ -n "$environment" ]]; then
# This variable may contain multiple Environment= directives
cat >> "$service_file" <<< "$environment"
fi
if [[ -n "$environment_file" ]]; then
@ -414,6 +445,7 @@ EOF
cat >> "$service_file" <<< "StandardError=${standard_error}"
fi
if [[ -n "$custom_service_content" ]]; then
# This variable may contain multiple miscellaneous directives
cat >> "$service_file" <<< "$custom_service_content"
fi
if [[ -n "$success_exit_status" ]]; then
@ -424,7 +456,8 @@ EOF
fi
cat >> "$service_file" <<EOF
# Optimizations
TimeoutSec=5min
TimeoutStartSec=2min
TimeoutStopSec=30s
IgnoreSIGPIPE=no
KillMode=mixed
EOF

View File

@ -5,7 +5,6 @@
> EJBCA is an enterprise class PKI Certificate Authority software, built using Java (JEE) technology.
[Overview of EJBCA](http://www.ejbca.org)
Trademarks: This software listing is packaged by Bitnami. The respective trademarks mentioned in the offering are owned by the respective companies, and use of them does not imply any affiliation or endorsement.
## TL;DR