14 lines
511 B
Python
14 lines
511 B
Python
import configparser
|
|
from etcd_wrapper import EtcdWrapper
|
|
from ldap_manager import LdapManager
|
|
|
|
config = configparser.ConfigParser()
|
|
config.read('pay.conf')
|
|
|
|
# Note 2020-02-15: this stuff clearly does not belong here,
|
|
# if config.py is used everywhere.
|
|
|
|
etcd_client = EtcdWrapper(host=config['etcd']['host'], port=config['etcd']['port'])
|
|
|
|
ldap_manager = LdapManager(server=config['ldap']['server'], admin_dn=config['ldap']['admin_dn'],
|
|
admin_password=config['ldap']['admin_password'])
|