This file is indexed.

/usr/share/phoronix-test-suite/pts-core/external-test-dependencies/scripts/install-debian-packages.sh is in phoronix-test-suite 4.8.3-1.

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
#!/bin/sh
# Debian, unlike Ubuntu, doesn't sudo it users by default
if [ -x /usr/bin/aptitude ]; then
	# aptitude is nice since it doesn't fail if a non-existant package is hit
	# See: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=503215
	su -c "aptitude -y install $*"
else
	su -c "apt-get -y --ignore-missing install $*"
fi