You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
261 B

#!/bin/bash
# change default umask so that I can actually use my ssh keys
umask 077
# prompt for decrypt and extract secrets
gpg --output ~/.ssh.tar --decrypt /colove/setup/secrets/ssh-secrets.tar.gpg
7z x ~/.ssh.tar
# start up the ssh agent.
eval `ssh-agent`