diff options
author | Stefano Brivio <sbrivio@redhat.com> | 2024-08-20 00:03:05 +0200 |
---|---|---|
committer | Stefano Brivio <sbrivio@redhat.com> | 2024-08-21 12:03:03 +0200 |
commit | d6817b3930be403328683e1b67c78c1f33be93fa (patch) | |
tree | 1e7a6cca38b45e98d2a211206129467155fb2fed | |
parent | 34be8eeb384d9c2fd3f1c9ce05d961f3422962e4 (diff) | |
download | passt-d6817b3930be403328683e1b67c78c1f33be93fa.tar passt-d6817b3930be403328683e1b67c78c1f33be93fa.tar.gz passt-d6817b3930be403328683e1b67c78c1f33be93fa.tar.bz2 passt-d6817b3930be403328683e1b67c78c1f33be93fa.tar.lz passt-d6817b3930be403328683e1b67c78c1f33be93fa.tar.xz passt-d6817b3930be403328683e1b67c78c1f33be93fa.tar.zst passt-d6817b3930be403328683e1b67c78c1f33be93fa.zip |
test/passt.mbuto: Install sshd-session OpenSSH's split process
OpenSSH now ships a per-session binary, sshd-session, with sshd
acting as mere listener. It's typically not found in $PATH, so specify
the whole path at which it's commonly installed in $PROGS.
Link: https://www.openssh.com/releasenotes.html#9.8p1
Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
Reviewed-by: David Gibson <david@gibson.dropbear.id.au>
-rwxr-xr-x | test/passt.mbuto | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/passt.mbuto b/test/passt.mbuto index 4abaafc..61865e8 100755 --- a/test/passt.mbuto +++ b/test/passt.mbuto @@ -13,7 +13,8 @@ PROGS="${PROGS:-ash,dash,bash ip mount ls insmod mkdir ln cat chmod lsmod modprobe find grep mknod mv rm umount jq iperf3 dhclient hostname sed tr chown sipcalc cut socat dd strace ping tail killall sleep sysctl - nproc tcp_rr tcp_crr udp_rr which tee seq bc sshd ssh-keygen cmp}" + nproc tcp_rr tcp_crr udp_rr which tee seq bc sshd ssh-keygen cmp + /usr/lib/openssh/sshd-session}" KMODS="${KMODS:- virtio_net virtio_pci vmw_vsock_virtio_transport}" |