diff --git a/install.sh b/install.sh index 726e7db..147f147 100755 --- a/install.sh +++ b/install.sh @@ -66,6 +66,12 @@ elif [ "$(uname)" == "Linux" ]; then source $ROOTDIR/linux/env.sh fi +# OpenSSH +_create_dir $HOME/.ssh +echo "Setting up .ssh" +_create_symlink $DBDIR/keys/config $HOME/.ssh/config +gpg-zip -d --tar-args "-C $HOME/.ssh" $DBDIR/keys/keys + # zsh if [[ ! -d "$HOME/.oh-my-zsh" ]]; then _git_get_repo git://github.com/robbyrussell/oh-my-zsh.git $HOME/.oh-my-zsh @@ -89,12 +95,6 @@ pushd $HOME/.vim/bundle/YouCompleteMe ./install.sh --clang-completer popd -# OpenSSH -_create_dir $HOME/.ssh -echo "Setting up .ssh" -_create_symlink $DBDIR/keys/config $HOME/.ssh/config -gpg-zip -d --tar-args "-C $HOME/.ssh" $DBDIR/keys/keys - echo "Configuring zsh as default shell" chsh -s $(which zsh)