1

Allow a local-only SSH config to exist

This commit is contained in:
Evan Pratten 2024-05-28 18:56:50 -04:00
parent c471fcb9d0
commit 928bebd225
2 changed files with 3 additions and 1 deletions

View File

@ -93,4 +93,5 @@ Host laptop
HostName ewpratten-laptop.home
Match all
Include /Users/ewpratten/.ssh/cloudflare/config
Include %d/.ssh/config.local

View File

@ -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