Added option for WSL

main
Thomas Ba. 5 years ago
parent d0bfe41cea
commit 726a2da836

@ -14,6 +14,20 @@ case "$MTYPE" in
"PC") "PC")
source $HOME/.zsh/commands-pc source $HOME/.zsh/commands-pc
;; ;;
"wlm")
source $HOME/.zsh/commands-server
# ssh-agent configuration
if [ -z "$(pgrep ssh-agent)" ]; then
rm -rf /tmp/ssh-*
eval $(ssh-agent -s) > /dev/null
else
export SSH_AGENT_PID=$(pgrep ssh-agent)
export SSH_AUTH_SOCK=$(find /tmp/ssh-* -name 'agent.*')
fi
if [[ "$(ssh-add -l)" == "The agent has no identities." ]]; then
ssh-add
fi
;;
"SERVER") "SERVER")
source $HOME/.zsh/commands-server source $HOME/.zsh/commands-server
;; ;;

Loading…
Cancel
Save