This file is indexed.

/usr/bin/system-config-lvm is in system-config-lvm 1.1.18-3.

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
set -e

if [ `id -u` -eq 0 ]; then
	invoke-rc.d lvm2 start;
	/usr/share/system-config-lvm/system-config-lvm.py;
else
	su-to-root -X -c "/usr/bin/system-config-lvm";
fi