summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--satellit_upgrader/updater.template.sh6
1 files changed, 6 insertions, 0 deletions
diff --git a/satellit_upgrader/updater.template.sh b/satellit_upgrader/updater.template.sh
index fa5e883..5c734c2 100644
--- a/satellit_upgrader/updater.template.sh
+++ b/satellit_upgrader/updater.template.sh
@@ -824,6 +824,12 @@ if ! [ -d /var/log/journal ]; then
systemctl restart systemd-journald
fi
+# Debian 10's default SSL configuration changed to only use DEFAULT@SECLEVEL=2
+# as ciphers. We need to patch that, since this can cause problems with ldadp.
+if [ "${MAJOR}" -eq 10 ]; then
+ sed -r -i 's/^[#\s]*(CipherString =.*)/#\1/' /etc/ssl/openssl.cnf
+fi
+
# ************************** LIGHTY ************************
# XXX
if [ -n "${restart["lighttpd.service"]}" ]; then