ssh keychain for git pull cron
try this link to solved same problem link
its help full to you..
Related videos on Youtube
Katafalkas
Updated on June 29, 2022Comments
-
Katafalkas less than a minute
I am a bit of a newbie with linux, so must apologize straight away if this is something obvious and/or silly.
I am trying to create a git pull cronjob that gets update from GitHub repo every few minutes.
Now the problem is that I can not get it working without entering pass-phrase every time cron runs.
ssh-agent and ssh-add does not do the trick as they loose the passwords every time user logs out. So I got the guide
http://www.cyberciti.biz/faq/ssh-passwordless-login-with-keychain-for-scripts/
and followed it, but still no results.I can not seem to get the keychain working properly. I think.
The steps I have done:
- Installed the keychain from RPMforge.
Edited the
vi $HOME/.bash_profile
to include:/usr/bin/keychain $HOME/.ssh/id_rsa
source $HOME/.keychain/$HOSTNAME-sh
And according to the guide, after I re-log, keychain should be working and I should not need to enter the pass-phrase every time I
ssh -T [email protected]
I am probably missing something, but can not seem to figure out what. Maybe someone has some suggestions ?
-
Katafalkas almost 10 yearsCheers, I am looking into it.
-
Sandy8086 almost 10 yearsok..if you solved your probs .let me know.
-
Katafalkas almost 10 yearsYeah, I went through all of it and found a flaws. Cheers for the source !