Skip to content

Instantly share code, notes, and snippets.

@mikebeaton
Created March 1, 2019 08:53
Show Gist options
  • Save mikebeaton/e7a2ab85226ba53dc59a71d7dcdd14c6 to your computer and use it in GitHub Desktop.
Save mikebeaton/e7a2ab85226ba53dc59a71d7dcdd14c6 to your computer and use it in GitHub Desktop.
.bashrc ssh-agent script for WSL Ubuntu
# Location where ssh-agent settings are persisted
SSH_ENV="$HOME/.ssh/environment"
# Start ssh-agent and persist its settings
function start_agent {
echo "Initializing new SSH agent..."
touch $SSH_ENV
chmod 600 "${SSH_ENV}"
/usr/bin/ssh-agent | sed 's/^echo/#echo/' > "${SSH_ENV}"
. "${SSH_ENV}" > /dev/null
/usr/bin/ssh-add
}
# If there are existing SSH_ENV settings and ssh-agent is still running then leave it alone, otherwise start it
if [ -f "${SSH_ENV}" ]; then
. "${SSH_ENV}" > /dev/null
kill -0 $SSH_AGENT_PID 2>/dev/null || {
start_agent
}
else
start_agent
fi
@mikebeaton
Copy link
Author

mikebeaton commented Mar 1, 2019

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment