From cf43b3b1922f8354c62483a6170ba8f53d0bb0bf Mon Sep 17 00:00:00 2001 From: Tim McCarthy Date: Sun, 14 Jun 2020 11:20:23 -0700 Subject: [PATCH] Setup Linux: Remove SSH key generation Since this repo is now private, we need to already have created an SSH key and added it to github, so making another is redundant. --- setup_linux.sh | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/setup_linux.sh b/setup_linux.sh index e013c2e..b0d7c56 100644 --- a/setup_linux.sh +++ b/setup_linux.sh @@ -66,14 +66,4 @@ timedatectl set-local-rtc 1 --adjust-system-clock # Change default shell sudo chsh -s /usr/bin/fish $USER -# SSH setup -ssh-keygen -t rsa -f $HOME/.ssh/id_rsa -q -P "" - -echo "Your SSH public key is:" -echo "" -cat ~/.ssh/id_rsa.pub -echo "" -read -p "Please add it to GitHub, then press enter to continue." - -git clone git@github.com:tim-mccarthy/dotfiles.git $HOME/.dotfiles bash ~/.dotfiles/setup_unix_common.sh