guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

02/07: services: openssh: Add dependency on ‘networking’.


From: guix-commits
Subject: 02/07: services: openssh: Add dependency on ‘networking’.
Date: Mon, 8 Jan 2024 18:52:28 -0500 (EST)

civodul pushed a commit to branch master
in repository guix.

commit 6c561e75937960f8b569008be5970285972b4d9d
Author: Ludovic Courtès <ludo@gnu.org>
AuthorDate: Fri Jan 5 10:11:33 2024 +0100

    services: openssh: Add dependency on ‘networking’.
    
    * gnu/services/ssh.scm (openssh-shepherd-service): Add ‘networking’ to
    ‘requirement’.
    
    Change-Id: I14c48fe40cce86810a544de6bb7f925bc360653a
---
 gnu/services/ssh.scm | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/gnu/services/ssh.scm b/gnu/services/ssh.scm
index 0abecd6b42..f759c5cf6e 100644
--- a/gnu/services/ssh.scm
+++ b/gnu/services/ssh.scm
@@ -1,5 +1,5 @@
 ;;; GNU Guix --- Functional package management for GNU
-;;; Copyright © 2014-2019, 2022, 2023 Ludovic Courtès <ludo@gnu.org>
+;;; Copyright © 2014-2019, 2022-2024 Ludovic Courtès <ludo@gnu.org>
 ;;; Copyright © 2016 David Craven <david@craven.ch>
 ;;; Copyright © 2016 Julien Lepiller <julien@lepiller.eu>
 ;;; Copyright © 2017 Clément Lassieur <clement@lassieur.org>
@@ -592,7 +592,10 @@ of user-name/file-like tuples."
 
   (list (shepherd-service
          (documentation "OpenSSH server.")
-         (requirement '(pam syslogd loopback))
+
+         ;; On the Hurd, this can only be started after pfinet is up, hence
+         ;; the dependency on 'networking'.
+         (requirement '(pam syslogd loopback networking))
          (provision '(ssh-daemon ssh sshd))
 
          (start #~(if #$inetd-style?



reply via email to

[Prev in Thread] Current Thread [Next in Thread]