This file is indexed.

/usr/share/dbus-test-runner/dbus-test-bustle-handler is in libdbustest1 15.04.0+16.10.20160906-0ubuntu1.

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
#!/bin/bash -e

if [ -x /usr/bin/bustle-pcap ]; then
	exec /usr/bin/bustle-pcap $1
fi

if [ -x /usr/bin/bustle-dbus-monitor ]; then
	exec /usr/bin/bustle-dbus-monitor --session > $1
fi

echo "Unable to find a suitable Bustle capture tool"
exit 1