Create client config paths when necesary
This commit is contained in:
parent
a78b0f21ba
commit
3332c36629
@ -52,7 +52,10 @@ class ConfigTreeParser(ConfigParser):
|
||||
@click.argument("authority")
|
||||
def certidude_provision(authority):
|
||||
client_config = ConfigParser()
|
||||
try:
|
||||
os.makedirs(os.path.dirname(const.CLIENT_CONFIG_PATH))
|
||||
except FileExistsError:
|
||||
pass
|
||||
if os.path.exists(const.CLIENT_CONFIG_PATH):
|
||||
client_config.read_file(open(const.CLIENT_CONFIG_PATH))
|
||||
if client_config.has_section(authority):
|
||||
|
Loading…
Reference in New Issue
Block a user