[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#27977] [PATCH 2/2] services: herd: Add a stop-service procedure.
From: |
Christopher Baines |
Subject: |
[bug#27977] [PATCH 2/2] services: herd: Add a stop-service procedure. |
Date: |
Sat, 5 Aug 2017 22:30:34 +0100 |
* gnu/services/herd.scm (stop-service): New procedure.
---
gnu/services/herd.scm | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/gnu/services/herd.scm b/gnu/services/herd.scm
index 49400aba4..e16d51b9d 100644
--- a/gnu/services/herd.scm
+++ b/gnu/services/herd.scm
@@ -49,7 +49,8 @@
unload-services
unload-service
load-services
- start-service))
+ start-service
+ stop-service))
;;; Commentary:
;;;
@@ -222,6 +223,10 @@ returns a shepherd <service> object."
(with-shepherd-action name ('start) result
result))
+(define (stop-service name)
+ (with-shepherd-action name ('stop) result
+ result))
+
;; Local Variables:
;; eval: (put 'alist-let* 'scheme-indent-function 2)
;; eval: (put 'with-shepherd 'scheme-indent-function 1)
--
2.13.1