diff options
| author | Evgeny Pisemsky <mail@pisemsky.site> | 2025-09-03 20:38:35 +0300 |
|---|---|---|
| committer | Ludovic Courtès <ludo@gnu.org> | 2025-10-23 19:35:07 +0200 |
| commit | 231562b68bd77d9f16fdcb85a4f702c6fe1ffa08 (patch) | |
| tree | ccecb2afd879724929a90b6284d30f61b7d80546 /gnu | |
| parent | 6c9ce6b9001914ea0b17beedf13e9a8b332bf895 (diff) | |
services: unbound: Remove dns from provision.
Fixes <https://issues.guix.gnu.org/76301>.
The ‘dns’ provision collides with that of Knot.
* gnu/services/dns.scm (unbound-shepherd-service): Remove dns from provision.
Change-Id: Ice774a9a338416e865dbc4d26a8f37243f084a35
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/services/dns.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/services/dns.scm b/gnu/services/dns.scm index 338ba012d0a..42a65a27677 100644 --- a/gnu/services/dns.scm +++ b/gnu/services/dns.scm @@ -1147,7 +1147,7 @@ log.") (let ((config-file (unbound-config-file config))) (list (shepherd-service (documentation "Unbound daemon.") - (provision '(unbound dns)) + (provision '(unbound)) ;; unbound may be bound to a particular IP address, hence ;; only start it after the networking service has started. (requirement '(user-processes networking)) |
