summaryrefslogtreecommitdiffstats
path: root/debian/get_user
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-27 10:36:23 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-27 10:36:23 +0000
commit3050ea58ec5f7f1d5a3d70a080a9cb9dceadda38 (patch)
treeb57c014754c37f359e87a796a2bc2859572b6612 /debian/get_user
parentAdding upstream version 3.0.5. (diff)
downloadknot-debian.tar.xz
knot-debian.zip
Adding debian version 3.0.5-1+deb11u1.debian/3.0.5-1+deb11u1debian
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/get_user')
-rwxr-xr-xdebian/get_user28
1 files changed, 28 insertions, 0 deletions
diff --git a/debian/get_user b/debian/get_user
new file mode 100755
index 0000000..1e5b656
--- /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'), Loader=yaml.FullLoader)
+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, Loader=yaml.FullLoader)
+ 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])