Skip to content

Commit

Permalink
Issue #1766: Harden the daily SSL certificate expiration cron job
Browse files Browse the repository at this point in the history
Fixes: #1766
Signed-off-by: Volker Theile <votdev@gmx.de>
  • Loading branch information
votdev committed May 26, 2024
1 parent 098dd43 commit 4c8a646
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions deb/openmediavault/debian/changelog
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
openmediavault (7.1.2-1) stable; urgency=low

* Issue #1748: Enable TCP for NFS v2 and v3.
* Issue #1766: Harden the daily SSL certificate expiration cron job.

-- Volker Theile <volker.theile@openmediavault.org> Fri, 24 May 2024 17:46:40 +0200

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ set -e

omv_syslog_info "Perform a check for expired SSL certificates."
for f in /etc/ssl/certs/"${OMV_SSL_CERTIFICATE_PREFIX}"*.crt ; do
[ -e "${f}" ] || continue
[ -f "${f}" ] || continue

omv_syslog_info "Validating the SSL certificate ${f} ..."

Expand Down

0 comments on commit 4c8a646

Please sign in to comment.