summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorMarius Bakke <mbakke@fastmail.com>2017-05-17 13:36:17 +0200
committerLudovic Courtès <ludo@gnu.org>2017-05-20 10:16:34 +0200
commite13b55ae797c8da2b06811d25e21abd173295b8d (patch)
tree788d8e87199bd53a55b9c2e60d23b7071038bc1c /gnu
parenta6c642ef63012508f755a1329aa66e4b09da72b5 (diff)
services: openssh: Don't depend on networking.
* gnu/services/ssh.scm (openssh-shepherd-service): Drop requirement.
Diffstat (limited to 'gnu')
-rw-r--r--gnu/services/ssh.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/services/ssh.scm b/gnu/services/ssh.scm
index 9917c311c7d..2a6c8d45c26 100644
--- a/gnu/services/ssh.scm
+++ b/gnu/services/ssh.scm
@@ -385,7 +385,7 @@ The other options should be self-descriptive."
385 385
386 (list (shepherd-service 386 (list (shepherd-service
387 (documentation "OpenSSH server.") 387 (documentation "OpenSSH server.")
388 (requirement '(networking syslogd)) 388 (requirement '(syslogd))
389 (provision '(ssh-daemon)) 389 (provision '(ssh-daemon))
390 (start #~(make-forkexec-constructor #$openssh-command 390 (start #~(make-forkexec-constructor #$openssh-command
391 #:pid-file #$pid-file)) 391 #:pid-file #$pid-file))