summaryrefslogtreecommitdiffstats
path: root/crypto/openssh/regress/localcommand.sh
blob: 220f19a4d48b01a773b3c478c3fb166f94e6ea21 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#	$OpenBSD: localcommand.sh,v 1.3 2015/03/03 22:35:19 markus Exp $
#	Placed in the Public Domain.

tid="localcommand"

echo 'PermitLocalCommand yes' >> $OBJ/ssh_proxy
echo 'LocalCommand echo foo' >> $OBJ/ssh_proxy

for p in ${SSH_PROTOCOLS}; 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
OpenPOWER on IntegriCloud