This repository has been archived on 2022-01-23. You can view files and clone it, but cannot push or open issues or pull requests.
vaultpass/testing/serverconf.py

53 lines
1.5 KiB
Python
Raw Permalink Normal View History

2020-04-01 11:37:21 -04:00
#!/usr/bin/env python3
2020-04-02 14:55:26 -04:00
import copy
2020-04-01 11:37:21 -04:00
import json
import os
conf_file = './testserver.json'
log_file = './vault.log'
default_conf = {'listener': [
2020-04-02 07:27:04 -04:00
{'tcp': {'address': '127.0.0.1:8200',
'tls_disable': True}}
2020-04-01 11:37:21 -04:00
],
2020-04-02 07:27:04 -04:00
'storage': {'file': {'path': './data'}},
2020-04-01 11:37:21 -04:00
'log_level': 'Debug', # highest is 'Trace'
'pid_file': './test.pid',
'disable_mlock': True,
2020-04-01 11:37:21 -04:00
'raw_storage_endpoint': True,
'log_format': 'json', # or String
'ui': True}
conf_file = os.path.abspath(os.path.expanduser(conf_file))
log_file = os.path.abspath(os.path.expanduser(log_file))
def genConf(confdict = None):
if not confdict:
2020-04-02 14:55:26 -04:00
confdict = copy.deepcopy(default_conf)
2020-04-01 11:37:21 -04:00
storage = confdict.get('storage')
if storage:
if 'file' in storage.keys():
2020-04-02 07:27:04 -04:00
storage['file']['path'] = os.path.abspath(os.path.expanduser(storage['file']['path']))
2020-04-01 11:37:21 -04:00
confdict['storage'] = storage
if 'pid_file' in confdict:
confdict['pid_file'] = os.path.abspath(os.path.expanduser(confdict['pid_file']))
conf = os.path.abspath(os.path.expanduser(conf_file))
with open(conf, 'w') as fh:
fh.write(json.dumps(confdict, indent = 4))
return(None)
def parseHCL(hclcontent):
# We only load this on-demand.
import hcl
conf = hcl.loads(hclcontent)
return(conf)
if __name__ == '__main__':
genConf()