[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: services: knot-resolver: Replace deprecated comma
From: |
guix-commits |
Subject: |
branch master updated: services: knot-resolver: Replace deprecated command-line option. |
Date: |
Tue, 27 Oct 2020 18:42:56 -0400 |
This is an automated email from the git hooks/post-receive script.
lfam pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 5ede259 services: knot-resolver: Replace deprecated command-line
option.
5ede259 is described below
commit 5ede2595260d74e2990a8f004298ecf23ea66206
Author: Simon South <simon@simonsouth.net>
AuthorDate: Tue Oct 27 14:23:19 2020 -0400
services: knot-resolver: Replace deprecated command-line option.
This silences a warning from the service at startup.
* gnu/services/dns.scm (knot-resolver-shepherd-services)[start]: Use the
"-n"
command-line option to kresd in place of the deprecated "-f 1".
Signed-off-by: Leo Famulari <leo@famulari.name>
---
gnu/services/dns.scm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gnu/services/dns.scm b/gnu/services/dns.scm
index 5728805..b339eb0 100644
--- a/gnu/services/dns.scm
+++ b/gnu/services/dns.scm
@@ -700,7 +700,7 @@ cache.size = 100 * MB
(documentation "Run the Knot Resolver daemon.")
(start #~(make-forkexec-constructor
'(#$(file-append package "/sbin/kresd")
- "-c" #$kresd-config-file "-f" "1"
+ "-c" #$kresd-config-file "-n"
"/var/cache/knot-resolver")))
(stop #~(make-kill-destructor)))
(shepherd-service
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: services: knot-resolver: Replace deprecated command-line option.,
guix-commits <=