From: Michael Tremer Date: Tue, 12 May 2026 18:16:16 +0000 (+0100) Subject: knot-resolver: Use its own user by default X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b579bcb0c38ba5ff0b8f23b4dbf12dbd408bd911;p=ipfire-2.x.git knot-resolver: Use its own user by default We drop privileges explicitely in the configuration file, but in case someone is doing their own thing, they should run kresd as the kresd user, too. Signed-off-by: Michael Tremer --- diff --git a/lfs/knot-resolver b/lfs/knot-resolver index 3336d5e9c..81eeb095f 100644 --- a/lfs/knot-resolver +++ b/lfs/knot-resolver @@ -73,8 +73,8 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) $(UPDATE_AUTOMAKE) cd $(DIR_APP) && meson setup \ --prefix=/usr \ - -Duser=nobody \ - -Dgroup=nobody \ + -Duser=kresd \ + -Dgroup=kresd \ -Dkeyfile_default="/var/lib/knot-resolver/root.keys" \ -Dinstall_root_keys=enabled \ -Dquic=disabled \