mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-13 13:40:28 +03:00
initrd-ssh: Fix for new dropbear version.
For some reason 2018.76 dropped the -m flag.
This commit is contained in:
parent
b62a26ea41
commit
f2937b7485
1 changed files with 1 additions and 1 deletions
|
@ -118,7 +118,7 @@ in
|
|||
echo ${escapeShellArg key} >> /root/.ssh/authorized_keys
|
||||
'') cfg.authorizedKeys)}
|
||||
|
||||
dropbear -s -j -k -E -m -p ${toString cfg.port} ${optionalString (cfg.hostRSAKey == null && cfg.hostDSSKey == null && cfg.hostECDSAKey == null) "-R"}
|
||||
dropbear -s -j -k -E -p ${toString cfg.port} ${optionalString (cfg.hostRSAKey == null && cfg.hostDSSKey == null && cfg.hostECDSAKey == null) "-R"}
|
||||
'';
|
||||
|
||||
boot.initrd.secrets =
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue