ssh: add setEnv option (#3935)
This commit is contained in:
parent
2f6a917ade
commit
6be873663e
3 changed files with 20 additions and 0 deletions
|
|
@ -5,6 +5,7 @@ Host * !github.com
|
|||
Host abc
|
||||
ProxyJump jump-host
|
||||
Host xyz
|
||||
SetEnv BAR="_bar_ 42" FOO="foo12"
|
||||
ServerAliveInterval 60
|
||||
ServerAliveCountMax 10
|
||||
IdentityFile file
|
||||
|
|
|
|||
|
|
@ -35,6 +35,10 @@ with lib;
|
|||
}
|
||||
];
|
||||
dynamicForwards = [{ port = 2839; }];
|
||||
setEnv = {
|
||||
FOO = "foo12";
|
||||
BAR = "_bar_ 42";
|
||||
};
|
||||
};
|
||||
|
||||
"* !github.com" = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue