services: lsh: Fix activation script.
* gnu/services/ssh.scm (lsh-service)[activate]: Import (guix build utils) for 'mkdir-p'.
This commit is contained in:
parent
b087d41316
commit
1f347f5533
|
@ -132,6 +132,7 @@ The other options should be self-descriptive."
|
||||||
"lshd"
|
"lshd"
|
||||||
#:allow-empty-passwords? allow-empty-passwords?)))
|
#:allow-empty-passwords? allow-empty-passwords?)))
|
||||||
(activate #~(begin
|
(activate #~(begin
|
||||||
|
(use-modules (guix build utils))
|
||||||
(mkdir-p "/var/spool/lsh")
|
(mkdir-p "/var/spool/lsh")
|
||||||
#$(if initialize?
|
#$(if initialize?
|
||||||
(activation lsh host-key)
|
(activation lsh host-key)
|
||||||
|
|
Loading…
Reference in New Issue