openssh/regress/localcommand.sh
Damien Miller a5e584274d - dtucker@cvs.openbsd.org 2007/10/29 06:57:13
[regress/Makefile regress/localcommand.sh]
     Add simple regress test for LocalCommand; ok djm@
2008-03-12 23:58:05 +11:00

16 lines
387 B
Bash

# $OpenBSD: localcommand.sh,v 1.1 2007/10/29 06:57:13 dtucker Exp $
# Placed in the Public Domain.
tid="localcommand"
echo 'PermitLocalCommand yes' >> $OBJ/ssh_proxy
echo 'LocalCommand echo foo' >> $OBJ/ssh_proxy
for p in 1 2; do
verbose "test $tid: proto $p localcommand"
a=$(${SSH} -F $OBJ/ssh_proxy -$p somehost true)
if [ "$a" != "foo" ] ; then
fail "$tid proto $p"
fi
done