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: Ibe1c79a44148596292c2c8907011ec787f8a9dddmaster
parent
49232eff56
commit
da9f509b03
|
@ -1877,7 +1877,8 @@ proxy of 'guix-daemon' to ~s...~%"
|
||||||
(format #t "clearing HTTP/HTTPS \
|
(format #t "clearing HTTP/HTTPS \
|
||||||
proxy of 'guix-daemon'...~%")
|
proxy of 'guix-daemon'...~%")
|
||||||
(unsetenv "http_proxy")))
|
(unsetenv "http_proxy")))
|
||||||
(action 'guix-daemon 'restart)
|
(perform-service-action (lookup-service 'guix-daemon)
|
||||||
|
'restart)
|
||||||
(environ environment)
|
(environ environment)
|
||||||
#t)))))
|
#t)))))
|
||||||
|
|
||||||
|
@ -1898,7 +1899,8 @@ proxy of 'guix-daemon'...~%")
|
||||||
(begin
|
(begin
|
||||||
(format #t "disable substitute servers discovery~%")
|
(format #t "disable substitute servers discovery~%")
|
||||||
(unsetenv "discover")))
|
(unsetenv "discover")))
|
||||||
(action 'guix-daemon 'restart)
|
(perform-service-action (lookup-service 'guix-daemon)
|
||||||
|
'restart)
|
||||||
(environ environment)
|
(environ environment)
|
||||||
#t)))))
|
#t)))))
|
||||||
|
|
||||||
|
|
Reference in New Issue