Add SSH Agent startup.
Signed-off-by: Jacob Kiers <jacob@alphacomm.nl>
This commit is contained in:
parent
9a9d1beb88
commit
1415dec58b
11
includes/bash_ssh.bash
Normal file
11
includes/bash_ssh.bash
Normal file
@ -0,0 +1,11 @@
|
||||
#!/bin/bash
|
||||
[ -f "$HOME/.ssh/*.key" ] || return;
|
||||
|
||||
if [ -z "$SSH_AUTH_SOCK" ] ; then
|
||||
eval `ssh-agent -s`
|
||||
fi
|
||||
|
||||
for key in $HOME/.ssh/*.key; do
|
||||
ssh-add $key
|
||||
done;
|
||||
|
@ -70,7 +70,7 @@ NOCOLOR="$(tput sgr0)"
|
||||
export EDITOR=`which vim`
|
||||
|
||||
# Load prompt and aliases
|
||||
for file in ~/dotfiles/includes/bash_{prompt,aliases,functions,git,completion}.bash; do
|
||||
for file in ~/dotfiles/includes/bash_*.bash; do
|
||||
[ -r "$file" ] && source "$file"
|
||||
done
|
||||
unset file
|
||||
|
Loading…
Reference in New Issue
Block a user