default to ssh-agent propagation
This commit is contained in:
parent
31b8c6f163
commit
cf5a6bbc00
1 changed files with 5 additions and 0 deletions
|
|
@ -162,6 +162,11 @@
|
||||||
if builtins.elem "-p" node.deploy.ssh.opts
|
if builtins.elem "-p" node.deploy.ssh.opts
|
||||||
then []
|
then []
|
||||||
else ["-p" (toString node.deploy.ssh.port)]
|
else ["-p" (toString node.deploy.ssh.port)]
|
||||||
|
)
|
||||||
|
++ (
|
||||||
|
if builtins.elem "-A" node.deploy.ssh.opts
|
||||||
|
then []
|
||||||
|
else ["-A"]
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue