From 5e197d6116a0f7f793c6f3a644fa4d9b79bc02eb Mon Sep 17 00:00:00 2001 From: Kjetil Orbekk Date: Sat, 13 Jun 2015 11:47:38 -0400 Subject: Add ssh config for *.orbekk.com. --- bin/setup.sh | 15 +++++++++------ ssh/config | 3 +++ 2 files changed, 12 insertions(+), 6 deletions(-) create mode 100644 ssh/config diff --git a/bin/setup.sh b/bin/setup.sh index 6b9015e..ee52c20 100755 --- a/bin/setup.sh +++ b/bin/setup.sh @@ -49,6 +49,9 @@ else printf "${orange}[SKIPPED]${none} shell is not zsh :-(.\n" fi +mkdir -p .ssh +create_symlink ../dotfiles/ssh/config .ssh/config + if which i3 >/dev/null; then mkdir -p .i3 create_symlink ../dotfiles/i3/config .i3/config @@ -64,10 +67,10 @@ else mkdir -p .vim/bundle git clone https://github.com/gmarik/Vundle.vim.git ~/.vim/bundle/Vundle.vim \ || success=0 - vim +PluginInstall +qall || success=0 - if [[ "$success" == "1" ]]; then - printf "${green}[OK]${none} installed vim plugins\n" - else - printf "${red}[WARNING]${none} failed to install vim plugins\n" - fi +fi +vim +PluginInstall +qall || success=0 +if [[ "$success" == "1" ]]; then + printf "${green}[OK]${none} installed vim plugins\n" +else + printf "${red}[WARNING]${none} failed to install vim plugins\n" fi diff --git a/ssh/config b/ssh/config new file mode 100644 index 0000000..703c2ad --- /dev/null +++ b/ssh/config @@ -0,0 +1,3 @@ +Host *.orbekk.com + GSSAPIKeyExchange no + GSSAPIAuthentication no -- cgit v1.2.3