We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi @clarkwang! ☀️ I am attempting to use passh to input the password for an RSA key on Travis-CI. The passh.c compiles successfully, but when I try to use passh in an ssh command, it still asks me for the password! 😞 please see: https://travis-ci.org/nelsonic/hello-world-node-http-server/builds/384184242#L458
passh
passh.c
ssh
The password for the SSH key is loaded as an environment variable SSH_ASKPASS but for some reason it is not being "piped" into the ssh command.
password
SSH_ASKPASS
Any help much appreciated. (thanks!)
The text was updated successfully, but these errors were encountered:
remove passh code from .travis.yml pending reply on Usage from: clark…
e341225
…wang/passh#2
passh's default password prompt is [Pp]assword: \{0,1\}$, you need to specify your real prompt. E.g.: passh -P 'Enter passphrase for key.*:'.
[Pp]assword: \{0,1\}$
passh -P 'Enter passphrase for key.*:'
Sorry, something went wrong.
@clarkwang thanks! I will try it.
No branches or pull requests
Hi @clarkwang! ☀️
I am attempting to use
passh
to input the password for an RSA key on Travis-CI.The
passh.c
compiles successfully, but when I try to usepassh
in anssh
command,it still asks me for the password! 😞
please see: https://travis-ci.org/nelsonic/hello-world-node-http-server/builds/384184242#L458
The
password
for the SSH key is loaded as an environment variableSSH_ASKPASS
but for some reason it is not being "piped" into the
ssh
command.What am I doing wrong?
Any help much appreciated. (thanks!)
The text was updated successfully, but these errors were encountered: