fix deploy-rs: add StrictHostKeyChecking to sshOpts
deploy-rs ignores NIX_SSHOPTS and only uses its own sshOpts. The host key verification prompt was blocking the non-interactive CI pipeline. Adding accept-new to sshOpts directly.
This commit is contained in:
parent
8b467f071f
commit
4ef5199810
1 changed files with 2 additions and 0 deletions
|
|
@ -127,6 +127,8 @@
|
|||
sshOpts = [
|
||||
"-p"
|
||||
"2299"
|
||||
"-o"
|
||||
"StrictHostKeyChecking=accept-new"
|
||||
];
|
||||
profiles.system = {
|
||||
user = "root";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue