mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-06 01:46:27 +00:00
merge
This commit is contained in:
parent
1bc5b51439
commit
425d47c52d
1 changed files with 9 additions and 2 deletions
|
@ -35,6 +35,13 @@ https://github.com/FreeRADIUS/freeradius-server/blob/master/src/modules/rlm_pyth
|
||||||
Inspired by Daniel Stan in Crans
|
Inspired by Daniel Stan in Crans
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
from configparser import ConfigParser
|
||||||
|
|
||||||
|
from re2oapi import Re2oAPIClient
|
||||||
|
|
||||||
|
import sys
|
||||||
|
from pathlib import Path
|
||||||
|
import subprocess
|
||||||
import logging
|
import logging
|
||||||
import os
|
import os
|
||||||
import sys
|
import sys
|
||||||
|
@ -125,10 +132,10 @@ def instantiate(*_):
|
||||||
"""
|
"""
|
||||||
logger.info("Instantiation")
|
logger.info("Instantiation")
|
||||||
|
|
||||||
path = (os.path.dirname(os.path.abspath(__file__)))
|
path = Path(__file__).resolve(strict=True).parent
|
||||||
|
|
||||||
config = ConfigParser()
|
config = ConfigParser()
|
||||||
config.read(path+'/config.ini')
|
config.read(path / 'config.ini')
|
||||||
|
|
||||||
api_hostname = config.get('Re2o', 'hostname')
|
api_hostname = config.get('Re2o', 'hostname')
|
||||||
api_password = config.get('Re2o', 'password')
|
api_password = config.get('Re2o', 'password')
|
||||||
|
|
Loading…
Reference in a new issue