win_certificate_store - Fix exception handling typo (#52906)

pull/52912/head
Jordan Borean 5 years ago committed by GitHub
parent 3635c59b23
commit 1126f76d4d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -0,0 +1,2 @@
bugfixes:
- win_certificate_store - Fix exception handling typo

@ -109,7 +109,7 @@ Function New-CertFile($module, $cert, $path, $type, $password) {
$module.FailJson("Failed to write cert to file, cert was null: $($_.Exception.Message)", $_)
} catch [System.IO.IOException] {
$module.FailJson("Failed to write cert to file due to IO Exception: $($_.Exception.Message)", $_)
} catch [System.UnauthorizedAccessException, System>Security.SecurityException] {
} catch [System.UnauthorizedAccessException, System.Security.SecurityException] {
$module.FailJson("Failed to write cert to file due to permissions: $($_.Exception.Message)", $_)
} catch {
$module.FailJson("Failed to write cert to file: $($_.Exception.Message)", $_)

Loading…
Cancel
Save