This file is indexed.

/usr/share/phoronix-test-suite/pts-core/external-test-dependencies/scripts/install-opensuse-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
10
11
12
13
#!/bin/sh

# OpenSuSE package installation

echo "Please enter your root password below:" 1>&2

if [ -x /usr/bin/zypper ]; then
	su root -c "zypper install -l -y --force-resolution $*"
else
	su root -c "yast -i $*"
fi

exit