Use the correct path for nacl certificates in Windows

This commit is contained in:
Erik Johnson 2018-03-21 08:13:11 -05:00
parent 8cdd56b9dc
commit 2f7660fe35
No known key found for this signature in database
GPG Key ID: 5E5583C437808F3F

View File

@ -185,9 +185,9 @@ def _get_config(**kwargs):
config = {
'box_type': 'sealedbox',
'sk': None,
'sk_file': os.path.join(__opts__['pki_dir'], 'master/nacl'),
'sk_file': os.path.join(__opts__['pki_dir'], 'master', 'nacl'),
'pk': None,
'pk_file': os.path.join(__opts__['pki_dir'], 'master/nacl.pub'),
'pk_file': os.path.join(__opts__['pki_dir'], 'master', 'nacl.pub'),
}
config_key = '{0}.config'.format(__virtualname__)
try: