Add ssh-agent setup for pass-phrase protection
Gonna be using pass phrase ssh keys...
This commit is contained in:
parent
f31c077790
commit
240bb600f3
2 changed files with 34 additions and 1 deletions
7
profile
7
profile
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue