mirror of
https://github.com/webfactory/ssh-agent.git
synced 2024-11-23 09:40:48 +00:00
...
This commit is contained in:
parent
a4b2891e37
commit
c77dd5afd7
3 changed files with 3 additions and 5 deletions
4
.github/workflows/demo.yml
vendored
4
.github/workflows/demo.yml
vendored
|
@ -44,7 +44,6 @@ jobs:
|
||||||
deployment_keys_demo:
|
deployment_keys_demo:
|
||||||
env:
|
env:
|
||||||
GIT_SSH_COMMAND: ssh -v
|
GIT_SSH_COMMAND: ssh -v
|
||||||
DISPLAY: fake
|
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
|
@ -59,9 +58,8 @@ jobs:
|
||||||
${{ secrets.MPDUDE_TEST_1_DEPLOY_KEY }}
|
${{ secrets.MPDUDE_TEST_1_DEPLOY_KEY }}
|
||||||
${{ secrets.MPDUDE_TEST_2_DEPLOY_KEY }}
|
${{ secrets.MPDUDE_TEST_2_DEPLOY_KEY }}
|
||||||
- run: |
|
- run: |
|
||||||
|
cat ~/.ssh/config
|
||||||
git clone git@github.com:mpdude/test-2.git test-2-git
|
git clone git@github.com:mpdude/test-2.git test-2-git
|
||||||
|
|
||||||
# cat ~/.ssh/config
|
|
||||||
# ls -alh ~/.ssh
|
# ls -alh ~/.ssh
|
||||||
# git clone https://github.com/mpdude/test-1.git test-1-http
|
# git clone https://github.com/mpdude/test-1.git test-1-http
|
||||||
# git clone git@github.com:mpdude/test-1.git test-1-git
|
# git clone git@github.com:mpdude/test-1.git test-1-git
|
||||||
|
|
2
dist/index.js
vendored
2
dist/index.js
vendored
|
@ -221,11 +221,11 @@ try {
|
||||||
// On Windows, IdentitiesOnly=yes will ignore keys from the agent, but send explicit keys first; so use "no" (https://github.com/PowerShell/Win32-OpenSSH/issues/1550)
|
// On Windows, IdentitiesOnly=yes will ignore keys from the agent, but send explicit keys first; so use "no" (https://github.com/PowerShell/Win32-OpenSSH/issues/1550)
|
||||||
let identitiesOnly = isWindows ? 'no' : 'yes';
|
let identitiesOnly = isWindows ? 'no' : 'yes';
|
||||||
|
|
||||||
// Use IdentitiesOnly=no due to https://github.com/PowerShell/Win32-OpenSSH/issues/1550
|
|
||||||
let sshConfig = `\nHost key-${keyNumber}\n`
|
let sshConfig = `\nHost key-${keyNumber}\n`
|
||||||
+ ` HostName github.com\n`
|
+ ` HostName github.com\n`
|
||||||
+ ` User git\n`
|
+ ` User git\n`
|
||||||
+ ` IdentitiesOnly ${identitiesOnly}\n`
|
+ ` IdentitiesOnly ${identitiesOnly}\n`
|
||||||
|
+ ` AddKeysToAgent yes\n`
|
||||||
+ ` IdentityFile ${keyFile}\n`;
|
+ ` IdentityFile ${keyFile}\n`;
|
||||||
|
|
||||||
fs.appendFileSync(`${homeSsh}/config`, sshConfig);
|
fs.appendFileSync(`${homeSsh}/config`, sshConfig);
|
||||||
|
|
2
index.js
2
index.js
|
@ -104,11 +104,11 @@ try {
|
||||||
// On Windows, IdentitiesOnly=yes will ignore keys from the agent, but send explicit keys first; so use "no" (https://github.com/PowerShell/Win32-OpenSSH/issues/1550)
|
// On Windows, IdentitiesOnly=yes will ignore keys from the agent, but send explicit keys first; so use "no" (https://github.com/PowerShell/Win32-OpenSSH/issues/1550)
|
||||||
let identitiesOnly = isWindows ? 'no' : 'yes';
|
let identitiesOnly = isWindows ? 'no' : 'yes';
|
||||||
|
|
||||||
// Use IdentitiesOnly=no due to https://github.com/PowerShell/Win32-OpenSSH/issues/1550
|
|
||||||
let sshConfig = `\nHost key-${keyNumber}\n`
|
let sshConfig = `\nHost key-${keyNumber}\n`
|
||||||
+ ` HostName github.com\n`
|
+ ` HostName github.com\n`
|
||||||
+ ` User git\n`
|
+ ` User git\n`
|
||||||
+ ` IdentitiesOnly ${identitiesOnly}\n`
|
+ ` IdentitiesOnly ${identitiesOnly}\n`
|
||||||
|
+ ` AddKeysToAgent yes\n`
|
||||||
+ ` IdentityFile ${keyFile}\n`;
|
+ ` IdentityFile ${keyFile}\n`;
|
||||||
|
|
||||||
fs.appendFileSync(`${homeSsh}/config`, sshConfig);
|
fs.appendFileSync(`${homeSsh}/config`, sshConfig);
|
||||||
|
|
Loading…
Reference in a new issue