This is an automated email from the git hooks/post-receive script. ngz pushed a commit to branch master in repository guix.
The following commit(s) were added to refs/heads/master by this push: new 075fe3083b gnu: service: Fix script location for TLP shepherd service. 075fe3083b is described below commit 075fe3083b5838463f2cef26e2fc0d1b2c87e310 Author: Simen Endsjø <cont...@simendsjo.me> AuthorDate: Mon Feb 24 23:21:06 2025 +0100 gnu: service: Fix script location for TLP shepherd service. * gnu/services/pm.scm (tlp-shepherd-service): Fix location for "tlp" script. Change-Id: I254437441641c96b19383e796fded82c4f6bbcb7 Signed-off-by: Nicolas Goaziou <m...@nicolasgoaziou.fr> --- gnu/services/pm.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnu/services/pm.scm b/gnu/services/pm.scm index 64b64e01fb..9b8066a38f 100644 --- a/gnu/services/pm.scm +++ b/gnu/services/pm.scm @@ -448,7 +448,7 @@ shutdown on system startup.")) (define (tlp-shepherd-service config) (let* ((tlp-bin (file-append - (tlp-configuration-tlp config) "/bin/tlp")) + (tlp-configuration-tlp config) "/sbin/tlp")) (tlp-action (lambda args #~(lambda _ (zero? (system* #$tlp-bin #$@args))))))