This file is indexed.

/var/lib/pcp/testsuite/changeversion is in pcp-testsuite 3.9.10.

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
29
30
31
32
33
34
35
36
37
38
39
40
41
#!/bin/sh
#
# Cleanup when going from PCP 3.x to 3.6 or vice versa
#

here=`pwd`
if [ -d $HOME/src/pcp/src/libpcp_fault/src/GNUmakefile ]
then
    # 3.x -> 3.6 make libpcp_fault and <pcp/fault.h>
    #
    cd $HOME/src/pcp
    ${MAKE:-make} pcp.lsm
    ./config.status
    cd src/include
    ${MAKE:-make}
    cd ../libpcp_fault/src
    ${MAKE:-make}
    sudo ${MAKE:-make} install
    ${MAKE:-make} clean
else
    # 3.6 -> 3.x cleanup
    #
    sudo rm -f /usr/lib/libpcp_fault* /usr/include/pcp/fault.h
fi
cd $here

rm -f src/descreqX2 src/torture_logmeta
rm -f src/check_fault_injection src/exercise_fault

cd src
if [ -f GNUmakefile.install ]
then
    # running QA in the tree
    ${MAKE:-make} -f GNUmakefile.install
else
    ${MAKE:-make}
fi
cd $here

echo "To check ..."
echo "./check 192 479 480"