summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAttila Lendvai <attila@lendvai.name>2022-05-26 15:07:44 +0200
committerLudovic Courtès <ludo@gnu.org>2022-06-04 00:11:44 +0200
commit7901639d244b203e673b0f59a28877d5710c9703 (patch)
treefbbc02ca34384eff1e7f12a3270efde905aafd66
parent4b99360b8be6d7679fb6b3823c20c053fb02f45d (diff)
downloadguix-patches-7901639d244b203e673b0f59a28877d5710c9703.tar
guix-patches-7901639d244b203e673b0f59a28877d5710c9703.tar.gz
services: ddclient: No need to import (ice-9 rdelim) from the host.
* gnu/services/dns.scm (ddclient-activation): Remove (ice-9 rdelim) from the with-imported-modules form. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
-rw-r--r--gnu/services/dns.scm3
1 files changed, 1 insertions, 2 deletions
diff --git a/gnu/services/dns.scm b/gnu/services/dns.scm
index a220b33f15..50753b7ab6 100644
--- a/gnu/services/dns.scm
+++ b/gnu/services/dns.scm
@@ -978,8 +978,7 @@ manually.")
(define (ddclient-activation config)
"Return the activation GEXP for CONFIG."
- (with-imported-modules '((guix build utils)
- (ice-9 rdelim))
+ (with-imported-modules '((guix build utils))
#~(begin
(use-modules (guix build utils)
(ice-9 rdelim))