/usr/share/autopkgtest/xenlvm/on-testbed is in autopkgtest-xenlvm 2.0.1ubuntu4.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | #!/bin/bash
set -e
. ${ADT_XENLVM_SHARE:=/usr/share/autopkgtest/xenlvm}/justconfig
while test $# -gt $nonoptargs; do shift; done
: "$1"
case "$1" in
--print-command) ppfx=echo; r=root@; shift ;;
--print0-command) ppfx=ppfx0; r=root@; shift ;;
--) shift ;;
-*) fail "invalid instead-of-command options \`$1'" ;;
esac
ppfx0 () { for x in "$@"; do printf '%s\0' "$x"; done; }
$ppfx ssh $adt_ssh_keyident_args $r$adt_guest_ipaddr "$@"
|