mirror of git://anongit.mindrot.org/openssh.git
- (djm) [regress/connect-privsep.sh regress/test-exec.sh] demote fatal
regress errors for the sandbox to warnings. ok tim dtucker
This commit is contained in:
parent
58ac11a2bd
commit
6efd94f32e
|
@ -1,3 +1,7 @@
|
|||
20110904
|
||||
- (djm) [regress/connect-privsep.sh regress/test-exec.sh] demote fatal
|
||||
regress errors for the sandbox to warnings. ok tim dtucker
|
||||
|
||||
20110829
|
||||
- (djm) [openbsd-compat/port-linux.c] Suppress logging when attempting
|
||||
to switch SELinux context away from unconfined_t, based on patch from
|
||||
|
|
|
@ -19,6 +19,7 @@ echo 'UsePrivilegeSeparation sandbox' >> $OBJ/sshd_proxy
|
|||
for p in 1 2; do
|
||||
${SSH} -$p -F $OBJ/ssh_proxy 999.999.999.999 true
|
||||
if [ $? -ne 0 ]; then
|
||||
fail "ssh privsep/sandbox+proxyconnect protocol $p failed"
|
||||
# XXX replace this with fail once sandbox has stabilised
|
||||
warn "ssh privsep/sandbox+proxyconnect protocol $p failed"
|
||||
fi
|
||||
done
|
||||
|
|
|
@ -204,6 +204,11 @@ verbose ()
|
|||
fi
|
||||
}
|
||||
|
||||
warn ()
|
||||
{
|
||||
echo "WARNING: $@" >>$TEST_SSH_LOGFILE
|
||||
echo "WARNING: $@"
|
||||
}
|
||||
|
||||
fail ()
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue