13 lines
356 B
Cheetah
13 lines
356 B
Cheetah
{{- if (contains "microsoft" .chezmoi.kernel.osrelease) -}}
|
|
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
|
|
{{- else -}}
|
|
SSH_AUTH_SOCK="$XDG_RUNTIME_DIR/ssh-agent.socket"
|
|
export SSH_AUTH_SOCK
|
|
{{ end }}
|