mirror of
https://github.com/DictXiong/dotfiles.git
synced 2026-08-24 16:06:52 +08:00
[debug] riot: disable controlmaster when forwarding gpg (#49)
fix(riot): disable controlmaster when forwarding gpg Signed-off-by: Dict Xiong <me@dxng.cn>
This commit is contained in:
parent
913032b59d
commit
e1aaeea93f
@ -255,6 +255,10 @@ prepare_gpg_forwarding() {
|
||||
fi
|
||||
fi
|
||||
|
||||
# A pre-existing multiplex master cannot apply this connection's -R
|
||||
# forwarding request. Put this first because OpenSSH keeps the first
|
||||
# value for repeated options, and force a dedicated connection.
|
||||
SSH_OPTIONS=("-o" "ControlMaster=no" "${SSH_OPTIONS[@]}")
|
||||
SSH_OPTIONS+=(
|
||||
# The probe already removed the old socket. Do not let the main SSH
|
||||
# connection unlink a path recreated during the gap between them.
|
||||
|
||||
@ -127,6 +127,7 @@ grep -Fq 'ARG=-T' "$MOCK_SSH_LOG"
|
||||
! grep -Fq 'ARG=RequestTTY=' "$MOCK_SSH_LOG"
|
||||
grep -Fq 'ARG=StreamLocalBindUnlink=no' "$MOCK_SSH_LOG"
|
||||
grep -Fq "ARG=$MOCK_REMOTE_SOCKET:$MOCK_LOCAL_SOCKET" "$MOCK_SSH_LOG"
|
||||
grep -Fq 'ARG=ControlMaster=no' "$MOCK_SSH_LOG"
|
||||
[[ ! -e "$MOCK_REMOTE_SOCKET" ]]
|
||||
|
||||
echo 'riot gpg forwarding tests passed'
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user