version 1.40, 2014/08/25 18:32:31
|
version 1.46, 2015/02/10 04:00:37
|
|
|
q:WEB_DBUSER apache | q:WEB_DBUSER apache |
q:POSTGRES_ADMIN postgres | q:POSTGRES_ADMIN postgres |
q:SUMS_MANAGER production | q:SUMS_MANAGER production |
# This seems like a bad idea to make the UID a parameter. Why not just convert the SUM_MANAGER value |
|
# to a UID when needed? If the UID of the SUM_MANAGER changes, we have to change the UID here. |
|
q:SUMS_MANAGER_UID 388 |
|
q:SUMS_GROUP SOI | q:SUMS_GROUP SOI |
q:SUMLOG_BASEDIR /usr/local/logs/SUM | q:SUMLOG_BASEDIR /usr/local/logs/SUM |
q:SUMBIN_BASEDIR /usr/local/bin | q:SUMBIN_BASEDIR /usr/local/bin |
|
|
a:RS_DBPORT 5432 | a:RS_DBPORT 5432 |
q:RS_DBUSER production | q:RS_DBUSER production |
q:RS_LOCKFILE /home/jsoc/locks/remotesums.lck | q:RS_LOCKFILE /home/jsoc/locks/remotesums.lck |
|
q:RS_LOGDIR /home/jsoc/jsoclogs/rsums |
a:RS_DLTIMEOUT 30 | a:RS_DLTIMEOUT 30 |
|
a:RS_REQTIMEOUT 5 |
a:RS_MAXTHREADS 32 | a:RS_MAXTHREADS 32 |
a:RS_BINPATH /home/jsoc/cvs/Development/JSOC/bin/linux_x86_64 |
q:RS_BINPATH /home/jsoc/cvs/Development/JSOC/bin/linux_x86_64 |
|
# White-list (access to internal stuff) |
|
a:WL_HASWL 1 |
|
q:WL_FILE /web/jsoc/htdocs/whitelist.txt |
|
# Bin paths |
|
q:BIN_EXPORT /home/jsoc/cvs/Development/JSOC/bin |
|
q:BIN_PY /home/jsoc/bin/linux_x86_64/activepython27 |
|
|
| |
__MAKE__ | __MAKE__ |
# JSOC_SDP third-party libraries used by base | # JSOC_SDP third-party libraries used by base |
|
|
__PROJCFG__ | __PROJCFG__ |
#! /bin/csh -f | #! /bin/csh -f |
| |
# Project-specific configuration (like adding links to scripts to the $JSOCROOT/scripts |
set PERLBIN = "" |
# directory). |
|
| |
find ../proj/lev0/scripts -mindepth 1 \( -path \*CVS -prune -o -exec ln -s {} . \; -a -exec echo " " {} " OK" \; \) -o -exec echo " " {} " ERROR - couldn't create link" \; |
if ($PERLBIN == "") then |
|
if (-x /home/jsoc/bin/linux_x86_64/activeperl) then |
|
set PERLBIN = "/home/jsoc/bin/linux_x86_64/activeperl" |
|
else |
|
set PERLBIN = "perl" |
|
endif |
|
endif |
| |
|
# Project-specific configuration (like adding links to scripts to the $JSOCROOT/scripts |
|
# directory). |
|
find ../proj/lev0/scripts -mindepth 1 -path \*CVS -prune -o -print | ${PERLBIN} -MFile::Basename -n -e 'my($bn) = basename($_); chomp($bn); my($path) = $_; chomp($path); if (!(-e $bn)) { `ln -s $_`; if ($? >> 8 == 0) { print " " . $path . " OK\n"; } else { print " " . $path . " ERROR - could not create link\n"; } }' |