]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - crypto/openssh/regress/localcommand.sh
Copy head (r256279) to stable/10 as part of the 10.0-RELEASE cycle.
[FreeBSD/stable/10.git] / crypto / openssh / regress / localcommand.sh
1 #       $OpenBSD: localcommand.sh,v 1.2 2013/05/17 10:24:48 dtucker Exp $
2 #       Placed in the Public Domain.
3
4 tid="localcommand"
5
6 echo 'PermitLocalCommand yes' >> $OBJ/ssh_proxy
7 echo 'LocalCommand echo foo' >> $OBJ/ssh_proxy
8
9 for p in 1 2; do
10         verbose "test $tid: proto $p localcommand"
11         a=`${SSH} -F $OBJ/ssh_proxy -$p somehost true`
12         if [ "$a" != "foo" ] ; then
13                 fail "$tid proto $p"
14         fi
15 done