From 46ec4c5ae30e9137e303a1f7187da16da6378eb4 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Mon, 6 May 2024 02:53:35 +0200 Subject: Adding debian version 2.7.6-2. Signed-off-by: Daniel Baumann --- debian/get_user | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100755 debian/get_user (limited to 'debian/get_user') diff --git a/debian/get_user b/debian/get_user new file mode 100755 index 0000000..1e0f258 --- /dev/null +++ b/debian/get_user @@ -0,0 +1,28 @@ +#!/usr/bin/python3 + +import yaml, sys + +conf_file = '/etc/knot/knot.conf' if len(sys.argv) < 2 else sys.argv[1] +ip_fields = ['listen', 'address', 'via', 'whitelist', 'network'] + +try: + conf = yaml.load(open(conf_file, 'r')) +except (yaml.scanner.ScannerError, yaml.parser.ParserError): + conf = False + +if not conf: + import io + conf_io = io.StringIO() + with open(conf_file) as f: + for line in f: + if line.split(':')[0].strip() not in ip_fields: + conf_io.write(line) + conf_io.seek(0) + try: + conf = yaml.load(conf_io) + except (yaml.scanner.ScannerError, yaml.parser.ParserError): + sys.exit(1) + +if "server" in conf and conf["server"]: + if "user" in conf["server"] and conf["server"]["user"]: + print(conf["server"]["user"].split(":")[0].split(".")[0]) -- cgit v1.2.3