From 928bebd22575ed0dc01b772a0c70ce56552592e9 Mon Sep 17 00:00:00 2001 From: Evan Pratten Date: Tue, 28 May 2024 18:56:50 -0400 Subject: [PATCH] Allow a local-only SSH config to exist --- configs/ssh/config | 3 ++- install-linux.sh | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/configs/ssh/config b/configs/ssh/config index 1a6c1a9..5f719a2 100644 --- a/configs/ssh/config +++ b/configs/ssh/config @@ -93,4 +93,5 @@ Host laptop HostName ewpratten-laptop.home Match all - Include /Users/ewpratten/.ssh/cloudflare/config + Include %d/.ssh/config.local + diff --git a/install-linux.sh b/install-linux.sh index 6f4f36d..468cb3a 100644 --- a/install-linux.sh +++ b/install-linux.sh @@ -55,6 +55,7 @@ ln -sf $EWCONFIG_ROOT/configs/.gitconfig ~/.gitconfig # Configure SSH ln -sf $EWCONFIG_ROOT/configs/ssh/config ~/.ssh/config +touch ~/.ssh/config.local chmod 644 "$HOME/.ssh/config" if type -p chown > /dev/null; then chown $USER "$HOME/.ssh/config"; fi