integrate-distro.sh: Use CVS_RSH or GIT_SSH to ssh into localhost

Signed-off-by: Jan Lindemann <jan@janware.com>
This commit is contained in:
Jan Lindemann 2017-04-26 07:27:02 +00:00
commit 3fd044c974
2 changed files with 8 additions and 4 deletions

View file

@ -44,11 +44,9 @@ check_scm()
ssh=ssh
[ "$CVS_RSH" ] && ssh="$CVS_RSH"
[ "$GIT_SSH" ] && ssh="$GIT_SSH"
[ "$JANWARE_USER" ] || JANWARE_USER=`whoami`
ssh=`which $ssh`
[ -x "$ssh" ] || fatal "SSH executable \"$ssh\" not found"
[ "$JANWARE_USER" ] || JANWARE_USER=`whoami`
ssh="$ssh -l $JANWARE_USER"
for host in cvs.jannet.de git.jannet.de; do