]> CyberLeo.Net >> Repos - FreeBSD/releng/10.2.git/blob - crypto/openssh/regress/localcommand.sh
- Copy stable/10@285827 to releng/10.2 in preparation for 10.2-RC1
[FreeBSD/releng/10.2.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