More updates

Signed-off-by: Jacob Kiers <jacob@jacobkiers.net>
This commit is contained in:
2022-01-06 19:17:46 +01:00
parent 99533ff670
commit 72c0f1b3c8
7 changed files with 17 additions and 286 deletions

View File

@@ -0,0 +1,11 @@
#!/bin/bash
if [ -z "$SSH_AUTH_SOCK" ] ; then
eval `ssh-agent -s`
fi
KEY="$HOME/.ssh/work"
[ -f $KEY ] || return;
ssh-add -l | grep $KEY > /dev/null || ssh-add $KEY