Remove includes/bash_ssh.bash

The automatic SSH agent functionality did not work correctly. Therefore,
it is removed.

Signed-off-by: Jacob Kiers <jacob@alphacomm.nl>
This commit is contained in:
Jacob Kiers 2015-05-12 12:09:35 +02:00
parent 116fcc44c4
commit 2cdb12a071
1 changed files with 0 additions and 11 deletions

View File

@ -1,11 +0,0 @@
#!/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;