File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed
Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,10 @@ All notable changes to this project will be documented in this file.
1010
1111### Bugfixes
1212
13- - Fix #1961 Renewal Apache2 only SSL certificate fails
13+ - Fix #1961 Renewal Apache2 only SSL certificate fails
14+ - Fixed #1956 to prevent reset of defined webmail client.
15+ - Explicitly disable cron reports #1978
16+ - Fixed an issue where in rare cases certificate failed to install @dpeca and @myvesta
1417- Merge LE logs in 1 file per domain #1968 @tlcd96
1518- Refresh phpmyadmin config for Apache2 + PHP FPM
1619- Mute notification mysql is down with v-update-sys-rrd-mysql
Original file line number Diff line number Diff line change @@ -474,11 +474,11 @@ if [[ "$status" -ne 200 ]]; then
474474fi
475475
476476# Splitting up downloaded pem
477- crt_end= $( grep -n END $ssl_dir /$domain .pem | head -n1 | cut -f1 -d:)
477+ crt_end= $( grep -n ' END CERTIFICATE ' $ssl_dir /$domain .pem | head -n1 | cut -f1 -d:)
478478head -n $crt_end $ssl_dir /$domain .pem > $ssl_dir /$domain .crt
479479
480480pem_lines= $( wc -l $ssl_dir /$domain .pem | cut -f 1 -d ' ' )
481- ca_end= $( grep -n " BEGIN" $ssl_dir /$domain .pem | tail -n1 | cut -f 1 -d :)
481+ ca_end= $( grep -n ' BEGIN CERTIFICATE ' $ssl_dir /$domain .pem | tail -n1 | cut -f 1 -d :)
482482ca_end= $(( pem_lines - crt_end + 1 ))
483483tail -n $ca_end $ssl_dir /$domain .pem > $ssl_dir /$domain .ca
484484
You can’t perform that action at this time.
0 commit comments