From: Frantisek Tobias Date: Fri, 11 Oct 2024 08:36:47 +0000 (+0200) Subject: kresctl: tab-completion: remove redundant Command.completion overrides in all command... X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=75f29c6fe43dcf0a4dc52f85ccfa2c50b9983a7a;p=thirdparty%2Fknot-resolver.git kresctl: tab-completion: remove redundant Command.completion overrides in all commands except config --- diff --git a/python/knot_resolver/constants.py b/python/knot_resolver/constants.py index 2acb86603..567be9f7f 100644 --- a/python/knot_resolver/constants.py +++ b/python/knot_resolver/constants.py @@ -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"