Easy CA management
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

18 lines
399 B

#!/usr/bin/env python3
# -*- coding: utf-8 -*-
MANAGER_PATH = "/var/lib/ca_manager/private"
REQUESTS_PATH = "/var/lib/ca_manager/requests"
OUTPUT_PATH = "/var/lib/ca_manager/outputs"
RESULTS_PATH = "/var/lib/ca_manager/results"
__doc__ = """
Paths for directories used by the CA manager
"""
all = [
MANAGER_PATH,
RESULTS_PATH,
OUTPUT_PATH,
RESULTS_PATH,
]