[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#72740] [PATCH v3 3/4] services: iptables: Provide a default value.
From: |
Giacomo Leidi |
Subject: |
[bug#72740] [PATCH v3 3/4] services: iptables: Provide a default value. |
Date: |
Fri, 23 Aug 2024 13:40:56 +0200 |
There doesn't seem to be a reason to force users to write
(service iptables-service-type
(iptables-configuration))
instead of simply
(service iptables-service-type)
This patch provides a default value for the iptables-service-type.
* gnu/services/networking.scm (iptables-service-type): Set default-value.
Change-Id: I93b6c544dfb064c7a0a999549dff61007a38f842
---
gnu/services/networking.scm | 1 +
1 file changed, 1 insertion(+)
diff --git a/gnu/services/networking.scm b/gnu/services/networking.scm
index 12d8934e43..c70fea7813 100644
--- a/gnu/services/networking.scm
+++ b/gnu/services/networking.scm
@@ -2055,6 +2055,7 @@ (define (iptables-shepherd-service config)
(define iptables-service-type
(service-type
(name 'iptables)
+ (default-value (iptables-configuration))
(description
"Run @command{iptables-restore}, setting up the specified rules.")
(extensions
--
2.45.2
- [bug#72740] [PATCH 2/4] services: pam: Allow extension of pam limits., (continued)