This file is indexed.

/var/lib/pcp/testsuite/mk.localconfig is in pcp-testsuite 4.0.1-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
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
#! /bin/sh
#
# re-create localconfig files (platform, versions) if need be
#
# Copyright (c) 1997-2002 Silicon Graphics, Inc.  All Rights Reserved.
#

# generic initialization
. ./common.rc

tmp=/var/tmp/$$
trap "rm -f $tmp.*; exit" 0 1 2 3 15

eval `./mk.pcpversion $PCP_VERSION`

cat <<End-of-File >$tmp.out
PCP_PLATFORM=$PCP_PLATFORM
PCP_VER=$PCP_VER
End-of-File

write_localconfig()
{
    awk -F= '{ print "#define",$1,$2 }' < $tmp.out > src/localconfig.h
    mv $tmp.out localconfig
}

if [ ! -f localconfig ]
then
    echo "Installing \"localconfig\""
    write_localconfig
elif diff $tmp.out localconfig >/dev/null
then
    :
else
    echo "Updating \"localconfig\""
    rm -f localconfig
    write_localconfig
fi