This file is indexed.

/usr/share/bug/libvdpau1 is in libvdpau1 1.1.1-3ubuntu1.

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
18
19
20
21
22
23
24
25
26
27
28
#!/bin/sh

exec >&3

if [ -z "$VDPAU_DRIVER" ]; then
	echo "VDPAU_DRIVER is not set"
else
	echo "VDPAU_DRIVER is set to '$VDPAU_DRIVER'"
fi
if [ -z "$VDPAU_DRIVER_PATH" ]; then
	echo "VDPAU_DRIVER_PATH is not set"
else
	echo "VDPAU_DRIVER_PATH is set to '$VDPAU_DRIVER_PATH'"
fi
echo

if [ -x /usr/bin/vdpauinfo ]; then
	echo "vdpauinfo:"
	/usr/bin/vdpauinfo 2>&1
else
	echo "vdpauinfo is not installed"
fi
echo

echo "available drivers:"
ls -la /usr/lib*/vdpau/libvdpau_* /usr/lib/*/vdpau/libvdpau_* "$VDPAU_DRIVER_PATH"/libvdpau_* 2>/dev/null

exit 0