host-expand.sh revision 295367
1#	$OpenBSD: host-expand.sh,v 1.4 2015/03/03 22:35:19 markus Exp $
2#	Placed in the Public Domain.
3
4tid="expand %h and %n"
5
6echo 'PermitLocalCommand yes' >> $OBJ/ssh_proxy
7printf 'LocalCommand printf "%%%%s\\n" "%%n" "%%h"\n' >> $OBJ/ssh_proxy
8
9cat >$OBJ/expect <<EOE
10somehost
11127.0.0.1
12EOE
13
14for p in ${SSH_PROTOCOLS}; do
15	verbose "test $tid: proto $p"
16	${SSH} -F $OBJ/ssh_proxy -$p somehost true >$OBJ/actual
17	diff $OBJ/expect $OBJ/actual || fail "$tid proto $p"
18done
19
20