add option to use ssh agent for authentication
This commit is contained in:
parent
bcbbda1eea
commit
16370ea112
3 changed files with 19 additions and 1 deletions
15
package.json
15
package.json
|
|
@ -162,6 +162,11 @@
|
|||
"type": "string",
|
||||
"description": "Absolute path to private key"
|
||||
},
|
||||
"useAgent": {
|
||||
"type": "boolean",
|
||||
"description": "Auto-detect the running SSH agent (via SSH_AUTH_SOCK environment variable) and use it to perform authentication",
|
||||
"default": false
|
||||
},
|
||||
"forwardX11": {
|
||||
"type": "boolean",
|
||||
"description": "If true, the server will redirect x11 to the local host",
|
||||
|
|
@ -287,6 +292,11 @@
|
|||
"type": "string",
|
||||
"description": "Absolute path to private key"
|
||||
},
|
||||
"useAgent": {
|
||||
"type": "boolean",
|
||||
"description": "Auto-detect the running SSH agent (via SSH_AUTH_SOCK environment variable) and use it to perform authentication",
|
||||
"default": false
|
||||
},
|
||||
"forwardX11": {
|
||||
"type": "boolean",
|
||||
"description": "If true, the server will redirect x11 to the local host",
|
||||
|
|
@ -547,6 +557,11 @@
|
|||
"type": "string",
|
||||
"description": "Absolute path to private key"
|
||||
},
|
||||
"useAgent": {
|
||||
"type": "boolean",
|
||||
"description": "Auto-detect the running SSH agent (via SSH_AUTH_SOCK environment variable) and use it to perform authentication",
|
||||
"default": false
|
||||
},
|
||||
"forwardX11": {
|
||||
"type": "boolean",
|
||||
"description": "If true, the server will redirect x11 to the local host",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue