/usr/lib/gridengine/spooldefaults is in gridengine-master 6.2u5-7.4.
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 | #!/bin/sh
# SGE spool binary Wrapper script to ensure correct environment variables are
# set
set -e
PROG=$(basename $0)
# Export LD_LIBRARY_PATH so it can find the spool libraries
LD_LIBRARY_PATH=/usr/lib/gridengine${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH}
export LD_LIBRARY_PATH
exec /usr/lib/gridengine/${PROG}.bin "$@"
|