diff --git a/setup/setup.sh b/setup/setup.sh new file mode 100644 index 0000000..37df378 --- /dev/null +++ b/setup/setup.sh @@ -0,0 +1,10 @@ +#!/bin/bash +# prompt for decrypt and extract secrets +gpg --output ~/.ssh.tar --decrypt /colove/setup/secrets/ssh-secrets.tar.gpg +mkdir .ssh +7z x ~/.ssh.tar + +# change default umask so that I can actually use my ssh keys +umask 077 +# start up the ssh agent. +eval `ssh-agent` \ No newline at end of file