civodul pushed a commit to branch master in repository guix. commit 9af4983266ea1a1fedfe97bb122779322470275b Author: Ludovic Courtès <l...@gnu.org> Date: Sun Aug 21 18:29:36 2016 +0200
gnu: openssh: Set the default sshd user PATH to something sensible. * gnu/packages/ssh.scm (openssh)[arguments]: Pass "--with-default-path". --- gnu/packages/ssh.scm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/gnu/packages/ssh.scm b/gnu/packages/ssh.scm index c6ff788..b2612a4 100644 --- a/gnu/packages/ssh.scm +++ b/gnu/packages/ssh.scm @@ -146,6 +146,9 @@ a server that supports the SSH-2 protocol.") `(#:test-target "tests" #:configure-flags '("--sysconfdir=/etc" + ;; Default value of 'PATH' used by sshd. + "--with-default-path=/run/current-system/profile/bin" + ;; Enable PAM support in sshd. "--with-pam")