1

update ssh config

This commit is contained in:
Evan Pratten 2022-03-25 12:21:05 -04:00
parent 8e7e283101
commit 004acad8d1
2 changed files with 13 additions and 2 deletions

View File

@ -1,4 +1,3 @@
# Personal servers
Host rtl-netlink
HostName netlink.local
@ -14,6 +13,14 @@ Host gw-ca-tor-01
Host hp-desktop
Hostname 10.9.0.12
Host ewpratten-laptop
Hostname 10.9.0.2
User ewpratten
Host ewpratten-desktop
Hostname 10.9.0.9
User ewpratten
# Github SSH adapter for restricted networks
Host github.com
HostName ssh.github.com
@ -68,3 +75,4 @@ Host atlas
Host sheridan-cpanel
User prattene
HostName cpanel.prattene.dev.fast.sheridanc.on.ca

View File

@ -14,4 +14,7 @@ if [ -f $EWCONFIG_ROOT/configs/zsh/by_host/$HOSTNAME.sh ]; then
fi
# I always want my ~/bin to be in my PATH
export PATH="$HOME/bin:$PATH"
export PATH="$HOME/bin:$PATH"
#THIS MUST BE AT THE END OF THE FILE FOR SDKMAN TO WORK!!!
export SDKMAN_DIR="$HOME/.sdkman"
[[ -s "$HOME/.sdkman/bin/sdkman-init.sh" ]] && source "$HOME/.sdkman/bin/sdkman-init.sh"