ssh-agent shenanigans

This commit is contained in:
Christoph J. Scherr 2024-03-07 14:17:53 +01:00 committed by PlexSheep
parent 8e1ed5b9f4
commit e7ab5fd04f
Signed by: PlexSheep
GPG Key ID: 7CDD0B14851A08EF
3 changed files with 17 additions and 2 deletions

1
.gitignore vendored
View File

@ -3,6 +3,7 @@
# except:
!.zshrc
!.zprofile
!.vimrc
!.ideavimrc
!.config

14
.zprofile Normal file
View File

@ -0,0 +1,14 @@
export SSH_AUTH_SOCK=~/.ssh/ssh-agent.$USER.sock
function ssh-agent-start ()
{
# if that socket does not exist, start the ssh-agent on it
if [[ -z $SSH_AGENT_PID ]]
then
rm $SSH_AUTH_SOCK
eval $(ssh-agent -a "$SSH_AUTH_SOCK") > /dev/null
# using ssh-add might ask for a password, we don't want that here.
# If only using ssh keys without passphrases, you can do this here
# ssh-add
fi
}
ssh-agent-start

4
.zshrc
View File

@ -43,8 +43,8 @@ function largefiles () { exec 2>/dev/null; du -ah "$@" | grep -P "^\d+(G|T|P|E)\
function midfiles () { exec 2>/dev/null; du -ah "$@" | grep -P "^\d+(M|G|T|P|E)\s" }
function smallfiles () { exec 2>/dev/null; du -ah "$@" | grep -P "^\d+(B|K)\s" }
function cachekeys () { exec 2>/dev/null;
eval $(ssh-agent)
ssh-add ~/.ssh/id_rsa
ssh-agent-start # see ~/.zprofile
ssh-add
}
function newpass() {
LC_ALL=C tr -dc '[:alnum:]' < /dev/urandom | head -c${1:-40}