summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn McCrae <john.mccrae@progress.com>2021-02-01 11:51:47 -0800
committerJohn McCrae <john.mccrae@progress.com>2021-02-01 11:51:47 -0800
commit651972c543d85605a4bcf2290aa7f270caab6c95 (patch)
tree93b2806079f5841f9f2d9e34f006adbe393e7982
parent60676dcfb7e6459ba0ed3ecae71cb37445ff7984 (diff)
downloadchef-651972c543d85605a4bcf2290aa7f270caab6c95.tar.gz
correcting chefstyle errors
Signed-off-by: John McCrae <john.mccrae@progress.com>
-rw-r--r--lib/chef/resource/windows_certificate.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/chef/resource/windows_certificate.rb b/lib/chef/resource/windows_certificate.rb
index a521f37f93..563cfd7e13 100644
--- a/lib/chef/resource/windows_certificate.rb
+++ b/lib/chef/resource/windows_certificate.rb
@@ -218,7 +218,7 @@ class Chef
def verify_cert(thumbprint = new_resource.source)
store = ::Win32::Certstore.open(new_resource.store_name, store_location: get_cert_location[1])
status = check_string(thumbprint).to_s
- if thumbprint.length == 40 && status == 'true'
+ if thumbprint.length == 40 && status == "true"
store.valid?(thumbprint)
else
new_thumbprint = powershell_exec!(get_thumbprint(new_resource.store_name, get_cert_location[0], new_resource.source)).result
@@ -267,7 +267,7 @@ class Chef
# this array structure is solving 2 problems. The first is that we need to have support for both the CurrentUser AND LocalMachine stores
# Secondly, we need to pass the proper constant name for each store to win32-certstore but also pass the short name to powershell scripts used here
def get_cert_location
- new_resource.user_store ? ["CurrentUser",CERT_SYSTEM_STORE_CURRENT_USER] : ["LocalMachine",CERT_SYSTEM_STORE_LOCAL_MACHINE]
+ new_resource.user_store ? ["CurrentUser", CERT_SYSTEM_STORE_CURRENT_USER] : ["LocalMachine", CERT_SYSTEM_STORE_LOCAL_MACHINE]
end
def cert_script(persist)