Update plugin.py

This commit is contained in:
sirferl 2020-02-15 16:11:58 +01:00 committed by GitHub
parent 3693bc2d8b
commit a70a49e4e9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 2 deletions

View File

@ -98,14 +98,12 @@ def process_options(options):
:param options:
:return: dict or valid verisign options
"""
# if there is a config variable with VERISIGN_PRODUCT_<upper(authority.name)> take the value as Cert product-type
# else default to "Server", to be compatoible with former versions
authority = options.get("authority").name.upper()
product_type = current_app.config.get("VERISIGN_PRODUCT_{0}".format(authority))
if product_type is None:
product_type = "Server"
data = {
"challenge": get_psuedo_random_string(),
"serverType": "Apache",