diff options
author | Marius Bakke <mbakke@fastmail.com> | 2017-05-17 13:36:17 +0200 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2017-05-18 01:00:52 +0200 |
commit | 07bf68ed093bd66903c6c20b42caafe10688ea04 (patch) | |
tree | 4e6d14b07a1505e8aca8c466058631d27c801425 /gnu | |
parent | 32199e9aa6a9904f9dc6ce235fb70638626095d8 (diff) | |
download | patches-07bf68ed093bd66903c6c20b42caafe10688ea04.tar patches-07bf68ed093bd66903c6c20b42caafe10688ea04.tar.gz |
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.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/services/ssh.scm b/gnu/services/ssh.scm index 9917c311c7..2a6c8d45c2 100644 --- a/gnu/services/ssh.scm +++ b/gnu/services/ssh.scm @@ -385,7 +385,7 @@ The other options should be self-descriptive." (list (shepherd-service (documentation "OpenSSH server.") - (requirement '(networking syslogd)) + (requirement '(syslogd)) (provision '(ssh-daemon)) (start #~(make-forkexec-constructor #$openssh-command #:pid-file #$pid-file)) |