Skip to content

Instantly share code, notes, and snippets.

@kdankov
Created July 19, 2019 17:26
Show Gist options
  • Save kdankov/1fbc420a3bfabe9f3e8bac1457850fc5 to your computer and use it in GitHub Desktop.
Save kdankov/1fbc420a3bfabe9f3e8bac1457850fc5 to your computer and use it in GitHub Desktop.
# Start SSH Agent
#----------------------------
SSH_ENV="$HOME/.ssh/environment"
function run_ssh_env {
. "${SSH_ENV}" > /dev/null
}
function start_ssh_agent {
echo "Initializing new SSH agent..."
ssh-agent | sed 's/^echo/#echo/' > "${SSH_ENV}"
echo "succeeded"
chmod 600 "${SSH_ENV}"
run_ssh_env;
ssh-add ~/.ssh/id_rsa;
}
if [ -f "${SSH_ENV}" ]; then
run_ssh_env;
ps -ef | grep ${SSH_AGENT_PID} | grep ssh-agent$ > /dev/null || {
start_ssh_agent;
}
else
start_ssh_agent;
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment