Add ssh-agent setup for pass-phrase protection

Gonna be using pass phrase ssh keys...
This commit is contained in:
Andrew Mulbrook 2021-08-19 13:27:33 -05:00
parent f31c077790
commit 240bb600f3
2 changed files with 34 additions and 1 deletions

View file

@ -12,7 +12,7 @@
if [ -n "$BASH_VERSION" ]; then
# include .bashrc if it exists
if [ -f "$HOME/.bashrc" ]; then
. "$HOME/.bashrc"
. "$HOME/.bashrc"
fi
fi
@ -31,3 +31,8 @@ if [ -d "$HOME/.scripts" ] ; then
PATH="$HOME/.scripts:$PATH"
fi
# Enable Ssh-Agent
if [ -n "$BASH_VERSION" ]; then
. "$HOME/.scripts/ssh_session"
fi