mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Merge pull request #42841 from Mapel88/patch-1
Fix bug #42818 in win_iis module
This commit is contained in:
commit
b8c7bda68d
1 changed files with 1 additions and 1 deletions
|
@ -856,7 +856,7 @@ def create_cert_binding(name, site, hostheader='', ipaddress='*', port=443,
|
|||
|
||||
new_cert_bindings = list_cert_bindings(site)
|
||||
|
||||
if binding_info not in new_cert_bindings(site):
|
||||
if binding_info not in new_cert_bindings:
|
||||
log.error('Binding not present: {0}'.format(binding_info))
|
||||
return False
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue