Using actual ConfigParser call; dingd has -c for config file

This commit is contained in:
Bandie 2020-05-02 20:24:16 +02:00
parent 3e7f23ccd1
commit 57fb2f7b99
Signed by: Bandie
GPG Key ID: 843D7FA93BA46312
2 changed files with 20 additions and 10 deletions

2
ding
View File

@ -21,7 +21,7 @@ def readConfig():
else:
CONFIG = "ding.cfg"
cfg = configparser.SafeConfigParser()
cfg = configparser.ConfigParser()
try:
cfg.read(CONFIG)

22
dingd
View File

@ -3,7 +3,7 @@
# Author: Bandie Canis
# License: 2-Clause BSD license
import ssl, socket, subprocess, time, os, sys
import ssl, socket, subprocess, time, os, sys, getopt
import configparser
CONFIG = None
@ -26,7 +26,7 @@ def getTimestamp():
return t
def execFromConfig(option, pw=False):
cfg = configparser.SafeConfigParser()
cfg = configparser.ConfigParser()
cfg.read(CONFIG)
if(pw):
@ -107,16 +107,19 @@ def main():
except EOFError:
print(getTimestamp(), "EOF")
def init():
def init(cfg=None):
global CONFIG, host, port, cafile, certfile, keyfile, pw_on, password, pwtimeout, tmppw_on, context, bindsocket
if(cfg==None):
if(os.name == 'nt'):
CONFIG = "dingd.win.cfg"
else:
CONFIG = "dingd.cfg"
else:
CONFIG = cfg
cfg = configparser.SafeConfigParser()
cfg = configparser.ConfigParser()
cfg.read(CONFIG)
try:
@ -176,10 +179,17 @@ def init():
if(__name__ == "__main__"):
try:
init()
conf = None
opts, args = getopt.getopt(sys.argv[1:], "c:")
for o, a in opts:
if o == "-c":
conf = a
init(conf)
main()
except getopt.GetoptError as e:
print("Error using options. Allowed options:\n-c [FILE] - Config file\n")
quit(2)
except KeyboardInterrupt:
print("\r\rServer stopped.")