openssh-portable/regress/localcommand.sh

19 lines
446 B
Bash

# $OpenBSD: localcommand.sh,v 1.4 2017/04/30 23:34:55 djm Exp $
# Placed in the Public Domain.
tid="localcommand"
echo 'PermitLocalCommand yes' >> $OBJ/ssh_proxy
echo 'LocalCommand echo foo' >> $OBJ/ssh_proxy
verbose "test $tid: proto $p localcommand"
a=`${SSH} -F $OBJ/ssh_proxy somehost true`
if [ "$os" == "windows" ]; then
a=`echo $a | tr -d '\r\n'` # Remove CR (carriage return)
fi
if [ "$a" != "foo" ] ; then
fail "$tid proto $p"
fi