This file is indexed.

/usr/share/globus/gpt/gpt_noinstaller is in grid-packaging-tools 3.6.7-1.

This file is owned by root:root, with mode 0o644.

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
# Globus-specific configure defaults. Attempt to be Linux FHS compliant

# Make sure prefix and exec_prefix have definitions
test "${prefix}" = NONE && prefix="${GLOBUS_LOCATION:-/usr}"
test "$exec_prefix" = 'NONE' && exec_prefix='${prefix}'

#punt on libdir-there's no consistant way to get flavor info here

# FHS eliminates libexec, so we'll stick those files in ${datadir}/globus
test "$libexecdir" = '${exec_prefix}/libexec' && libexecdir='${datadir}/globus'

# Be more polite about include
test "$includedir" = '${prefix}/include' && includedir='${prefix}/include/globus'
# If we're deployed to /usr, we'll use some special smarts to have var and
# etc be subdirs of / instead of /usr, so they'll be in more expected places
if test "$prefix" = /usr; then
    test "$sysconfdir" = '${prefix}/etc' && sysconfdir=/etc
    test "$sharedstatedir" = '${prefix}/com' && sharedstatedir=/var/globus
    test "$localstatedir" = '${prefix}/var' && localstatedir=/var/globus
fi