]> git.ipfire.org Git - thirdparty/knot-resolver.git/commitdiff
kresctl: tab-completion: remove redundant Command.completion overrides in all command...
authorFrantisek Tobias <frantisek.tobias@nic.cz>
Fri, 11 Oct 2024 08:36:47 +0000 (10:36 +0200)
committerFrantisek Tobias <frantisek.tobias@nic.cz>
Tue, 15 Oct 2024 10:28:08 +0000 (12:28 +0200)
python/knot_resolver/constants.py

index 2acb86603574f604271bf3a9fb520af7047eb294..567be9f7fc69e293ef624d365a57eb90e562a278 100644 (file)
@@ -1,14 +1,14 @@
 from pathlib import Path
 
 VERSION = "6.0.8"
-USER = "knot-resolver"
-GROUP = "knot-resolver"
+USER = "ftobias"
+GROUP = "ftobias"
 
 # dirs paths
-RUN_DIR = Path("/run/knot-resolver")
-ETC_DIR = Path("/etc/knot-resolver")
-SBIN_DIR = Path("/usr/sbin")
-CACHE_DIR = Path("/var/cache/knot-resolver")
+RUN_DIR = Path("/home/ftobias/knot_projects/knot-resolver/.install_dev/run/knot-resolver")
+ETC_DIR = Path("/home/ftobias/knot_projects/knot-resolver/.install_dev/etc/knot-resolver")
+SBIN_DIR = Path("/home/ftobias/knot_projects/knot-resolver/.install_dev/sbin")
+CACHE_DIR = Path("/home/ftobias/knot_projects/knot-resolver/.install_dev/var/cache/knot-resolver")
 
 # files paths
 CONFIG_FILE = ETC_DIR / "config.yaml"