blob: 5164190fbf550b57592edefeb98b3897d0ce6b78 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
declare -x SSH_AUTH_SOCK SSH_AGENT_PID
if [ -n "$SSHENVFILE" ] && [ -r "$SSHENVFILE" ];then
if source "$SSHENVFILE"; then
case "$OSNAME" in
'sunos')
if echo "${SSHAGH[@]}"|tr ' ' '\n'|grep -E "^$(cat /etc/nodename)\$"
add-sshagent-init
fi
;;
*)
if echo "${SSHAGH[@]}"|tr ' ' '\n'|grep -P "^$(hostname -f)\$" > /dev/null;then
add-sshagent-init
fi
;;
esac
fi
fi
for gitpsrc in "/usr/share/git/git-prompt.sh" "/usr/local/share/git/git-prompt.sh" \
"/usr/share/git-completion/prompt.sh" "/usr/local/share/git-completion/prompt.sh"; do
if [ -r "$gitpsrc" ]; then
source "$gitpsrc"
break
fi
done
|