unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#38240] [PATCH] services: sysctl: Make service one-shot.
@ 2019-11-16 21:42 Efraim Flashner
  2019-11-18  8:21 ` [bug#38240] [PATCH v2] " Efraim Flashner
  0 siblings, 1 reply; 7+ messages in thread
From: Efraim Flashner @ 2019-11-16 21:42 UTC (permalink / raw)
  To: 38240; +Cc: Efraim Flashner

* gnu/services/sysctl.scm (sysctl-shepherd-service): Adjust shepherd
service to use '--one-shot' flag. Remove 'respawn' option.
---
 gnu/services/sysctl.scm | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/gnu/services/sysctl.scm b/gnu/services/sysctl.scm
index 5e9e6f0661..1f1cf38195 100644
--- a/gnu/services/sysctl.scm
+++ b/gnu/services/sysctl.scm
@@ -58,9 +58,8 @@
         (documentation "Configure kernel parameters at boot.")
         (provision '(sysctl))
         (start #~(lambda _
-                   (zero? (system* #$sysctl "--load" #$sysctl.conf))))
-        (stop #~(const #t))
-        (respawn? #f))))))
+                   (zero? (system* #$sysctl "--load" #$sysctl.conf "--one-shot"))))
+        (stop #~(const #t)))))))
 
 (define sysctl-service-type
   (service-type
-- 
2.24.0

^ permalink raw reply related	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2019-11-20 19:26 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-11-16 21:42 [bug#38240] [PATCH] services: sysctl: Make service one-shot Efraim Flashner
2019-11-18  8:21 ` [bug#38240] [PATCH v2] " Efraim Flashner
2019-11-19  9:44   ` Ludovic Courtès
2019-11-19  9:57     ` Efraim Flashner
2019-11-19 10:00     ` [bug#38240] [PATCH v3] " Efraim Flashner
2019-11-20 14:10       ` Ludovic Courtès
2019-11-20 19:24         ` bug#38240: " Efraim Flashner

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).