guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

06/06: services: docker: Disable configuration serialization.


From: guix-commits
Subject: 06/06: services: docker: Disable configuration serialization.
Date: Sat, 8 May 2021 01:06:18 -0400 (EDT)

apteryx pushed a commit to branch master
in repository guix.

commit a9a67da573222715ea3152eacdfb5d3840dccd9a
Author: Maxim Cournoyer <maxim.cournoyer@gmail.com>
AuthorDate: Sat May 8 00:11:12 2021 -0400

    services: docker: Disable configuration serialization.
    
    * gnu/services/docker.scm (serialize-boolean): Delete procedure.
    (docker-configuration) <no-serialization>: New syntactic keyword.
---
 gnu/services/docker.scm | 10 +++-------
 1 file changed, 3 insertions(+), 7 deletions(-)

diff --git a/gnu/services/docker.scm b/gnu/services/docker.scm
index 7acfbea..be85316 100644
--- a/gnu/services/docker.scm
+++ b/gnu/services/docker.scm
@@ -1,7 +1,7 @@
 ;;; GNU Guix --- Functional package management for GNU
 ;;; Copyright © 2018 Danny Milosavljevic <dannym@scratchpost.org>
 ;;; Copyright © 2020 Jakub Kądziołka <kuba@kadziolka.net>
-;;; Copyright © 2020 Maxim Cournoyer <maxim.cournoyer@gmail.com>
+;;; Copyright © 2020, 2021 Maxim Cournoyer <maxim.cournoyer@gmail.com>
 ;;; Copyright © 2020 Efraim Flashner <efraim@flashner.co.il>
 ;;; Copyright © 2020 Jesse Dowell <jessedowell@gmail.com>
 ;;;
@@ -37,11 +37,6 @@
             docker-service-type
             singularity-service-type))
 
-;;; We're not using serialize-configuration, but we must define this because
-;;; the define-configuration macro validates it exists.
-(define (serialize-boolean field-name val)
-  "")
-
 (define-configuration docker-configuration
   (docker
    (package docker)
@@ -64,7 +59,8 @@ loop-back communications.")
    "Enable or disable debug output.")
   (enable-iptables?
    (boolean #t)
-   "Enable addition of iptables rules (enabled by default)."))
+   "Enable addition of iptables rules (enabled by default).")
+  (no-serialization))
 
 (define %docker-accounts
   (list (user-group (name "docker") (system? #t))))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]