mirror of git://anongit.mindrot.org/openssh.git
upstream: better error messages
OpenBSD-Regress-ID: 55e4186604e80259496d841e690ea2090981bc7a
This commit is contained in:
parent
6958f00acf
commit
e43f43d3f1
|
@ -1,4 +1,4 @@
|
|||
# $OpenBSD: forcecommand.sh,v 1.4 2017/04/30 23:34:55 djm Exp $
|
||||
# $OpenBSD: forcecommand.sh,v 1.5 2023/05/12 06:36:27 djm Exp $
|
||||
# Placed in the Public Domain.
|
||||
|
||||
tid="forced command"
|
||||
|
@ -12,7 +12,7 @@ for t in ${SSH_KEYTYPES}; do
|
|||
done
|
||||
|
||||
trace "forced command in key option"
|
||||
${SSH} -F $OBJ/ssh_proxy somehost false || fail "forced command in key"
|
||||
${SSH} -F $OBJ/ssh_proxy somehost false || fail "forced command in key option"
|
||||
|
||||
cp /dev/null $OBJ/authorized_keys_$USER
|
||||
for t in ${SSH_KEYTYPES}; do
|
||||
|
@ -24,7 +24,7 @@ cp $OBJ/sshd_proxy_bak $OBJ/sshd_proxy
|
|||
echo "ForceCommand true" >> $OBJ/sshd_proxy
|
||||
|
||||
trace "forced command in sshd_config overrides key option"
|
||||
${SSH} -F $OBJ/ssh_proxy somehost false || fail "forced command in key"
|
||||
${SSH} -F $OBJ/ssh_proxy somehost false || fail "forced command config"
|
||||
|
||||
cp $OBJ/sshd_proxy_bak $OBJ/sshd_proxy
|
||||
echo "ForceCommand false" >> $OBJ/sshd_proxy
|
||||
|
@ -32,4 +32,4 @@ echo "Match User $USER" >> $OBJ/sshd_proxy
|
|||
echo " ForceCommand true" >> $OBJ/sshd_proxy
|
||||
|
||||
trace "forced command with match"
|
||||
${SSH} -F $OBJ/ssh_proxy somehost false || fail "forced command in key"
|
||||
${SSH} -F $OBJ/ssh_proxy somehost false || fail "forced command match"
|
||||
|
|
Loading…
Reference in New Issue