* 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
This commit is contained in:
2025-09-11 07:07:38 -04:00
parent b85c294ce4
commit 12f4287b36
2 changed files with 3 additions and 3 deletions

View File

@@ -16,7 +16,7 @@
my $letsencryptStatus = $configDB->get_prop( 'letsencrypt', 'status' )
|| '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 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 version 11.0
%define release 9
%define release 10
Summary: This is what smeserver-certificates does.
Name: %{name}
Version: %{version}
@@ -25,7 +25,7 @@ AutoReqProv: no
%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]
rewrite of 10Domains fragment