[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
09/10: services: guix: Remove dependency on lsh.
From: |
Ludovic Courtès |
Subject: |
09/10: services: guix: Remove dependency on lsh. |
Date: |
Mon, 19 Dec 2016 22:58:30 +0000 (UTC) |
civodul pushed a commit to branch master
in repository guix.
commit f78903f36308081eeea52223fb3f5dca5096baef
Author: Ludovic Courtès <address@hidden>
Date: Mon Dec 19 23:39:43 2016 +0100
services: guix: Remove dependency on lsh.
* gnu/services/base.scm (<guix-configuration>)[lsh]: Remove.
(guix-shepherd-service): Remove lsh from 'PATH'.
* doc/guix.texi (Base Services): Adjust accordingly.
---
doc/guix.texi | 3 +--
gnu/services/base.scm | 12 ++++--------
2 files changed, 5 insertions(+), 10 deletions(-)
diff --git a/doc/guix.texi b/doc/guix.texi
index c218209..7c37468 100644
--- a/doc/guix.texi
+++ b/doc/guix.texi
@@ -8300,8 +8300,7 @@ The list of URLs where to look for substitutes by default.
List of extra command-line options for @command{guix-daemon}.
@item @code{lsof} (default: @var{lsof})
address@hidden @code{lsh} (default: @var{lsh})
-The lsof and lsh packages to use.
+The lsof package to use.
@end table
@end deftp
diff --git a/gnu/services/base.scm b/gnu/services/base.scm
index 8e68689..f2bac29 100644
--- a/gnu/services/base.scm
+++ b/gnu/services/base.scm
@@ -37,7 +37,6 @@
#:use-module ((gnu packages base)
#:select (canonical-package glibc))
#:use-module (gnu packages package-management)
- #:use-module (gnu packages ssh)
#:use-module (gnu packages lsof)
#:use-module (gnu packages terminals)
#:use-module ((gnu build file-systems)
@@ -1091,9 +1090,7 @@ failed to register hydra.gnu.org public key: ~a~%"
status))))))))
(extra-options guix-configuration-extra-options ;list of strings
(default '()))
(lsof guix-configuration-lsof ;<package>
- (default lsof))
- (lsh guix-configuration-lsh ;<package>
- (default lsh)))
+ (default lsof)))
(define %default-guix-configuration
(guix-configuration))
@@ -1104,7 +1101,7 @@ failed to register hydra.gnu.org public key: ~a~%"
status))))))))
(($ <guix-configuration> guix build-group build-accounts
authorize-key? keys
use-substitutes? substitute-urls extra-options
- lsof lsh)
+ lsof)
(list (shepherd-service
(documentation "Run the Guix daemon.")
(provision '(guix-daemon))
@@ -1119,10 +1116,9 @@ failed to register hydra.gnu.org public key: ~a~%"
status))))))))
"--substitute-urls" #$(string-join substitute-urls)
address@hidden)
- ;; Add 'lsof' (for the GC) and 'lsh' (for offloading) to the
- ;; daemon's $PATH.
+ ;; Add 'lsof' (for the GC) to the daemon's $PATH.
#:environment-variables
- (list (string-append "PATH=" #$lsof "/bin:" #$lsh "/bin"))))
+ (list (string-append "PATH=" #$lsof "/bin"))))
(stop #~(make-kill-destructor)))))))
(define (guix-accounts config)
- branch master updated (acb5f7c -> dc0ef09), Ludovic Courtès, 2016/12/19
- 05/10: gnu: cuirass: Add Git to 'PATH'., Ludovic Courtès, 2016/12/19
- 07/10: services: cuirass: Honor 'user' and 'group'., Ludovic Courtès, 2016/12/19
- 09/10: services: guix: Remove dependency on lsh.,
Ludovic Courtès <=
- 08/10: services: cuirass: Cache defaults to /var/cache/cuirass., Ludovic Courtès, 2016/12/19
- 06/10: services: cuirass: Add 'log-file' option., Ludovic Courtès, 2016/12/19
- 04/10: gnu: utox: Fix description., Ludovic Courtès, 2016/12/19
- 01/10: install: The list of services is now a plain list., Ludovic Courtès, 2016/12/19
- 03/10: gnu: utox: Update to 0.11.0., Ludovic Courtès, 2016/12/19
- 02/10: gnu: Add c-toxcore., Ludovic Courtès, 2016/12/19
- 10/10: services: guix: Add 'log-file' configuration option., Ludovic Courtès, 2016/12/19