Add script to ensure ssh agent is running to bash

main
Buddy Sandidge 5 years ago
parent 362c5f3682
commit ac60eb45ee

@ -0,0 +1,14 @@
#!/usr/bin/env bash
ENVFILE=~/.bash/ssh-agent.env
if [ -f $ENVFILE ] ; then
. $ENVFILE > /dev/null
if ! kill -0 $SSH_AGENT_PID > /dev/null 2>&1; then
eval $(ssh-agent | tee $ENVFILE)
ssh-add
fi
else
eval $(ssh-agent | tee $ENVFILE)
ssh-add
fi

@ -15,6 +15,7 @@ source-file ~/.bash/functions
source-file ~/.bash/path
source-file ~/.bash/environment
source-file ~/.bash/prompt
source-file ~/.bash/ensure-ssh-agent
source-file ~/opt/bash/env
unset -f source-file

Loading…
Cancel
Save