Created
October 17, 2011 00:14
-
-
Save alexras/1291631 to your computer and use it in GitHub Desktop.
Bash snippets to automatically start and stop an ssh-agent process on login and logout
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
## in .bash_profile | |
SSHAGENT=`which ssh-agent` | |
SSHAGENTARGS="-s" | |
if [ -z "$SSH_AUTH_SOCK" -a -x "$SSHAGENT" ]; then | |
eval `$SSHAGENT $SSHAGENTARGS` | |
trap "kill $SSH_AGENT_PID" 0 | |
fi | |
## in .logout | |
if [ ${SSH_AGENT_PID+1} == 1 ]; then | |
ssh-add -D | |
ssh-agent -k > /dev/null 2>&1 | |
unset SSH_AGENT_PID | |
unset SSH_AUTH_SOCK | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This is great, thanks!