Merge pull request #795 from fraenki/fix_794

security/acme-client: release 1.17
This commit is contained in:
Frank Wall 2018-08-15 23:05:14 +02:00 committed by GitHub
commit 7ffb48bf53
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -1,5 +1,5 @@
PLUGIN_NAME= acme-client
PLUGIN_VERSION= 1.16
PLUGIN_VERSION= 1.17
PLUGIN_COMMENT= Let's Encrypt client
PLUGIN_MAINTAINER= opnsense@moov.de
PLUGIN_DEPENDS= acme.sh bind912

View file

@ -814,7 +814,7 @@ function run_acme_validation($certObj, $valObj, $acctObj)
}
// if OCSP Extension is turned on pass --ocsp parameter to acme client
if (isset($certObj->ocsp)) {
if (isset($certObj->ocsp) and ($certObj->ocsp == 1)) {
$acme_args[] = "--ocsp";
}