#!/bin/sh

BIN=/usr/bin/devhelp

if [ `hostname` = windsor.office.etersoft.ru ] ; then
	test -e $BIN && $BIN $@
	exit $?
fi

if ! ssh-add -l ; then
	zenity --title " DevHelp" --error --text "   ģ    SSH.    ssh-add"
	exit 1
fi
ssh -Y builder $BIN $@
