Hello community,

here is the log from the commit of package opensuse-dovecot-image for 
openSUSE:Factory checked in at 2020-12-21 10:23:59
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/opensuse-dovecot-image (Old)
 and      /work/SRC/openSUSE:Factory/.opensuse-dovecot-image.new.5145 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "opensuse-dovecot-image"

Mon Dec 21 10:23:59 2020 rev:2 rq:857092 version:1.0.0

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/opensuse-dovecot-image/opensuse-dovecot-image.changes
    2020-11-23 18:53:24.241544812 +0100
+++ 
/work/SRC/openSUSE:Factory/.opensuse-dovecot-image.new.5145/opensuse-dovecot-image.changes
  2020-12-21 10:26:49.916212158 +0100
@@ -1,0 +2,10 @@
+Fri Dec 18 21:11:57 UTC 2020 - Thorsten Kukuk <ku...@suse.com>
+
+- Fix error caused by uninitialized DEBUG variable
+
+-------------------------------------------------------------------
+Thu Dec 17 16:00:16 UTC 2020 - Thorsten Kukuk <ku...@suse.com>
+
+- Don't create CA certificates if certs are provided
+
+-------------------------------------------------------------------

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ entrypoint.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/entrypoint/entrypoint.sh new/entrypoint/entrypoint.sh
--- old/entrypoint/entrypoint.sh        2020-11-20 16:00:47.000000000 +0100
+++ new/entrypoint/entrypoint.sh        2020-12-19 19:37:38.000000000 +0100
@@ -1,5 +1,7 @@
 #!/bin/bash
 
+DEBUG=${DEBUG:-"0"}
+
 [ "${DEBUG}" = "1" ] && set -x
 
 export PATH=/usr/sbin:/sbin:${PATH}
@@ -247,7 +249,11 @@
     echo "Add TLS config..."
 
     mkdir -p "${DOVECOT_CERTS_DIR}"
-    /common-scripts/ssl-helper "$DOVECOT_TLS_CRT" "$DOVECOT_TLS_KEY" 
"$DOVECOT_TLS_CA_CRT" "$DOVECOT_TLS_CA_KEY"
+    if [ ! -e "$DOVECOT_TLS_CRT" ] || [ ! -e "$DOVECOT_TLS_KEY" ]; then
+       if ! /common-scripts/ssl-helper "$DOVECOT_TLS_CRT" "$DOVECOT_TLS_KEY" 
"$DOVECOT_TLS_CA_CRT" "$DOVECOT_TLS_CA_KEY"; then
+           exit 1
+       fi
+    fi
 
     # create DHParamFile if not found
     if [ ! -f "${DOVECOT_TLS_DH_PARAM}" ]; then
_______________________________________________
openSUSE Commits mailing list -- commit@lists.opensuse.org
To unsubscribe, email commit-le...@lists.opensuse.org
List Netiquette: https://en.opensuse.org/openSUSE:Mailing_list_netiquette
List Archives: 
https://lists.opensuse.org/archives/list/commit@lists.opensuse.org

Reply via email to