blob: 8a9b569717d502b380776802eabea403396190d8 [file] [log] [blame]
Darren Tucker1466bd22013-05-17 20:42:05 +10001# $OpenBSD: localcommand.sh,v 1.2 2013/05/17 10:24:48 dtucker Exp $
Damien Millera5e58422008-03-12 23:58:05 +11002# Placed in the Public Domain.
3
4tid="localcommand"
5
6echo 'PermitLocalCommand yes' >> $OBJ/ssh_proxy
7echo 'LocalCommand echo foo' >> $OBJ/ssh_proxy
8
9for p in 1 2; do
10 verbose "test $tid: proto $p localcommand"
Tim Rice02db85b2008-03-14 11:02:51 -070011 a=`${SSH} -F $OBJ/ssh_proxy -$p somehost true`
Damien Millera5e58422008-03-12 23:58:05 +110012 if [ "$a" != "foo" ] ; then
13 fail "$tid proto $p"
14 fi
15done