[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/02: services: guix: Use Shepherd 0.10 API for actions.
From: |
guix-commits |
Subject: |
02/02: services: guix: Use Shepherd 0.10 API for actions. |
Date: |
Sun, 5 May 2024 06:07:37 -0400 (EDT) |
civodul pushed a commit to branch master
in repository guix.
commit da9f509b0300f1b6b979c68a52d8669f9bcb89a7
Author: Ludovic Courtès <ludo@gnu.org>
AuthorDate: Sun May 5 11:54:43 2024 +0200
services: guix: Use Shepherd 0.10 API for actions.
The ‘action’ method was deprecated in Shepherd 0.10.0.
* gnu/services/base.scm (shepherd-set-http-proxy-action)
(shepherd-discover-action): Use ‘perform-service-action’ instead of the
now-deprecated ‘action’ method.
Change-Id: Ibe1c79a44148596292c2c8907011ec787f8a9ddd
---
gnu/services/base.scm | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/gnu/services/base.scm b/gnu/services/base.scm
index 5cf6083821..85160bd3ab 100644
--- a/gnu/services/base.scm
+++ b/gnu/services/base.scm
@@ -1877,7 +1877,8 @@ proxy of 'guix-daemon' to ~s...~%"
(format #t "clearing HTTP/HTTPS \
proxy of 'guix-daemon'...~%")
(unsetenv "http_proxy")))
- (action 'guix-daemon 'restart)
+ (perform-service-action (lookup-service 'guix-daemon)
+ 'restart)
(environ environment)
#t)))))
@@ -1898,7 +1899,8 @@ proxy of 'guix-daemon'...~%")
(begin
(format #t "disable substitute servers discovery~%")
(unsetenv "discover")))
- (action 'guix-daemon 'restart)
+ (perform-service-action (lookup-service 'guix-daemon)
+ 'restart)
(environ environment)
#t)))))