1 Commits

Author SHA1 Message Date
16b33e6683 * Wed Sep 10 2025 Jean-Philippe Pialasse <jpp@koozali.org> 11.0-10.sme
- fix unexpected behaviour when item set as disabled [SME: 13136]
  rewrite of 10Domains fragment
2025-09-11 07:07:38 -04:00
2 changed files with 3 additions and 3 deletions

View File

@@ -16,7 +16,7 @@
my $letsencryptStatus = $configDB->get_prop( 'letsencrypt', 'status' ) my $letsencryptStatus = $configDB->get_prop( 'letsencrypt', 'status' )
|| 'disabled'; || 'disabled';
return "# letsencrypt is disabled\n" if ( $letsencryptStatus if 'disabled' ) ; return "# letsencrypt is disabled\n" if ( $letsencryptStatus eq 'disabled' ) ;
# if disabled will only ask certs for host pointing to self. # if disabled will only ask certs for host pointing to self.
# if set otherwise, will try to get one even if host set as remote or local. # if set otherwise, will try to get one even if host set as remote or local.

View File

@@ -1,6 +1,6 @@
%define name smeserver-certificates %define name smeserver-certificates
%define version 11.0 %define version 11.0
%define release 9 %define release 10
Summary: This is what smeserver-certificates does. Summary: This is what smeserver-certificates does.
Name: %{name} Name: %{name}
Version: %{version} Version: %{version}
@@ -25,7 +25,7 @@ AutoReqProv: no
%changelog %changelog
* Wed Sep 10 2025 Jean-Philippe Pialasse <jpp@koozali.org> 11.0-9.sme * Wed Sep 10 2025 Jean-Philippe Pialasse <jpp@koozali.org> 11.0-10.sme
- fix unexpected behaviour when item set as disabled [SME: 13136] - fix unexpected behaviour when item set as disabled [SME: 13136]
rewrite of 10Domains fragment rewrite of 10Domains fragment