Use a new ssh-agent only when the user doesn't have any keys added to the current agent.

This commit is contained in:
Hylke Bons 2011-03-08 00:10:56 +00:00
parent be9948aad4
commit f5e839ef95

View file

@ -16,7 +16,11 @@ start() {
echo -n "Starting SparkleShare... "
mkdir -p /tmp/sparkleshare/
if [ -n "$SSH_AGENT_PID" ]; then
# Use a new ssh-agent if the user doesn't have any unlocked keys added
# already. This prevents password prompts of various kinds from appearing.
ssh-add -l > /dev/null
if [ $? == 0 ]; then
mono "@expanded_libdir@/@PACKAGE@/SparkleShare.exe" $2 &
else
ssh-agent mono "@expanded_libdir@/@PACKAGE@/SparkleShare.exe" $2 &
@ -59,5 +63,4 @@ case $1 in
*)
echo "Usage: sparkleshare {start|stop|restart|help}"
;;
esac
esac