First i'd like to thank you for your awsome work, keep it up :D
I'm am currently trying to setup ssh-add automatization inside Keychain, so the user select his keyname and enter his passphrase then Keychain do its work. In order to do that my app feed to the user's data to the following script
Trying to automatize ssh-add inside Keychain
in General Help
Posted
Hey there,
First i'd like to thank you for your awsome work, keep it up :D
I'm am currently trying to setup ssh-add automatization inside Keychain, so the user select his keyname and enter his passphrase then Keychain do its work. In order to do that my app feed to the user's data to the following script
Wich I source in Keychain (v7.1 line 1460) by replacing
sshout=`ssh-add ${ssh_timeout} ${ssh_confirm} "$@" 2>&1`by
. /tmp/auto-ssh-addThen I just added
eval `keychain --eval --agents ssh ~/.ssh/id_rsaName`in .bash_profile. It works like a charm, except I was planning to delete the script where the passphrase is written.
Do you see how I can use the beauty of Keychain and feed ssh-add user's information automatically only once?
Thanks in advance
Max