This file is indexed.

/usr/share/arc/configure-gridfactory-env.sh is in nordugrid-arc-arex 1.1.1-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
21
22
23
24
25
26
27
28
29
30
#
# set environment gridfactory variables:
#

##############################################################
# Reading configuration from $ARC_CONFIG
##############################################################

if [ -z "$pkgdatadir" ]; then echo 'pkgdatadir must be set' 1>&2; exit 1; fi

. "$pkgdatadir/config_parser.sh" || exit $?

ARC_CONFIG=${ARC_CONFIG:-/etc/arc.conf}
config_parse_file $ARC_CONFIG 1>&2 || exit $?

config_import_section "common"
config_import_section "infosys"
config_import_section "grid-manager"
config_import_section "cluster"

# Also read queue section
if [ ! -z "$joboption_queue" ]; then
  config_import_section "queue/$joboption_queue"
fi

# Paths to gridfactory commands and gridfactory settings
GF_BIN_PATH=${CONFIG_gridfactory_bin_path:-/usr/share/gridfactory/cli}
PSTAT="$GF_BIN_PATH/pstat.sh -f dummy -b localhost"
PKILL="$GF_BIN_PATH/pkill.sh -f dummy"
PCLEAN="$GF_BIN_PATH/pclean.sh"