View | Details | Raw Unified | Return to bug 884 | Differences between
and this patch

Collapse All | Expand All

(-)Makefile (-1 / +3 lines)
Lines 24-29 LTESTS= connect \ Link Here
24
		agent-getpeereid \
24
		agent-getpeereid \
25
		agent-timeout \
25
		agent-timeout \
26
		agent-ptrace \
26
		agent-ptrace \
27
		bigkey \
27
		keyscan \
28
		keyscan \
28
		keygen-change \
29
		keygen-change \
29
		scp \
30
		scp \
Lines 40-49 LTESTS= connect \ Link Here
40
USER!=		id -un
41
USER!=		id -un
41
CLEANFILES+=	authorized_keys_${USER} known_hosts pidfile \
42
CLEANFILES+=	authorized_keys_${USER} known_hosts pidfile \
42
		ssh_config sshd_config.orig ssh_proxy sshd_config sshd_proxy \
43
		ssh_config sshd_config.orig ssh_proxy sshd_config sshd_proxy \
44
		dsa.pub dsa hostnoroot.rsa hostnoroot.rsa1 \
43
		rsa.pub rsa rsa1.pub rsa1 host.rsa host.rsa1 \
45
		rsa.pub rsa rsa1.pub rsa1 host.rsa host.rsa1 \
44
		rsa-agent rsa-agent.pub rsa1-agent rsa1-agent.pub \
46
		rsa-agent rsa-agent.pub rsa1-agent rsa1-agent.pub \
45
		ls.copy banner.in banner.out empty.in \
47
		ls.copy banner.in banner.out empty.in \
46
		scp-ssh-wrapper.exe
48
		scp-ssh-wrapper.exe ssh_proxy_bigkey
47
49
48
#LTESTS+=	ssh-com ssh-com-client ssh-com-keygen ssh-com-sftp
50
#LTESTS+=	ssh-com ssh-com-client ssh-com-keygen ssh-com-sftp
49
51
(-)test-exec.sh (-1 / +2 lines)
Lines 207-213 for t in rsa rsa1; do Link Here
207
	echo HostKey $OBJ/host.$t >> $OBJ/sshd_config
207
	echo HostKey $OBJ/host.$t >> $OBJ/sshd_config
208
208
209
	# don't use SUDO for proxy connect
209
	# don't use SUDO for proxy connect
210
	echo HostKey $OBJ/$t >> $OBJ/sshd_proxy
210
	cp $OBJ/$t $OBJ/hostnoroot.$t
211
	echo HostKey $OBJ/hostnoroot.$t >> $OBJ/sshd_proxy
211
done
212
done
212
chmod 644 $OBJ/authorized_keys_$USER
213
chmod 644 $OBJ/authorized_keys_$USER
213
214

Return to bug 884