diff options
author | Jan Pavlinec <jan.pavlinec@nic.cz> | 2021-06-17 14:59:32 +0200 |
---|---|---|
committer | Jan Pavlinec <jan.pavlinec@nic.cz> | 2021-06-17 15:00:48 +0200 |
commit | 1d1eca32dbc344cc76a86279a03519c726465daa (patch) | |
tree | 0aefdebc7b2af8a4809b96b892f8f22a747f88f2 /net | |
parent | a86c3666f3bef77dd7002ca0c4f55b543695d534 (diff) |
knot-resolver: change scheduling priority
This should prevent some resolving issues by other router app.
Signed-off-by: Jan Pavlinec <jan.pavlinec@nic.cz>
Diffstat (limited to 'net')
-rw-r--r-- | net/knot-resolver/Makefile | 2 | ||||
-rwxr-xr-x | net/knot-resolver/files/kresd.init | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/net/knot-resolver/Makefile b/net/knot-resolver/Makefile index 89db36fb0..dc215d4dd 100644 --- a/net/knot-resolver/Makefile +++ b/net/knot-resolver/Makefile @@ -11,7 +11,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=knot-resolver PKG_VERSION:=5.3.2 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz PKG_SOURCE_URL:=https://secure.nic.cz/files/knot-resolver diff --git a/net/knot-resolver/files/kresd.init b/net/knot-resolver/files/kresd.init index 18f09e18c..9642c9d76 100755 --- a/net/knot-resolver/files/kresd.init +++ b/net/knot-resolver/files/kresd.init @@ -65,6 +65,7 @@ start_service() { procd_append_param command -c "$CONFIGFILE" procd_append_param command -a "0.0.0.0#53" procd_append_param command -a "::0#53" + procd_set_param nice '-5' procd_close_instance } |