-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Alban Andrieu
committed
Feb 11, 2016
1 parent
c7ca457
commit 0d9e7de
Showing
4 changed files
with
493 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
; needed to bypass self-signed certificates on windows | ||
[defaults] | ||
bin_ansible_callbacks=True | ||
callback_plugins = ./callback_plugins | ||
library = ./library |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import ssl | ||
if hasattr(ssl, '_create_default_https_context') and hasattr(ssl, '_create_unverified_context'): | ||
ssl._create_default_https_context = ssl._create_unverified_context | ||
|
||
class CallbackModule(object): | ||
pass | ||
|
||
# needed to bypass self-signed certificates for winrm |
Oops, something went wrong.