diff options
author | Mark H Weaver <mhw@netris.org> | 2014-08-07 21:00:57 -0400 |
---|---|---|
committer | Mark H Weaver <mhw@netris.org> | 2014-08-07 21:09:51 -0400 |
commit | 1f347f55333251059cf26c900e75115e70959606 (patch) | |
tree | 551d39a443268eee14e241f9c9d9b0ae2e2c10b3 /gnu/services/ssh.scm | |
parent | b087d413168a7e3632952f5d59a0c9b3515393ca (diff) | |
download | guix-1f347f55333251059cf26c900e75115e70959606.tar guix-1f347f55333251059cf26c900e75115e70959606.tar.gz |
services: lsh: Fix activation script.
* gnu/services/ssh.scm (lsh-service)[activate]: Import (guix build utils)
for 'mkdir-p'.
Diffstat (limited to 'gnu/services/ssh.scm')
-rw-r--r-- | gnu/services/ssh.scm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gnu/services/ssh.scm b/gnu/services/ssh.scm index fc46c345de..5fc98e988c 100644 --- a/gnu/services/ssh.scm +++ b/gnu/services/ssh.scm @@ -132,6 +132,7 @@ The other options should be self-descriptive." "lshd" #:allow-empty-passwords? allow-empty-passwords?))) (activate #~(begin + (use-modules (guix build utils)) (mkdir-p "/var/spool/lsh") #$(if initialize? (activation lsh host-key) |