ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/JSOC/configsdp.txt
(Generate patch)

Comparing configsdp.txt (file contents):
Revision 1.41 by arta, Tue Sep 2 19:46:19 2014 UTC vs.
Revision 1.49 by arta, Mon Apr 13 22:40:32 2015 UTC

# Line 26 | Line 26 | q:DBNAME                        jsoc
26   q:WEB_DBUSER                    apache
27   q:POSTGRES_ADMIN                postgres
28   q:SUMS_MANAGER                  production
29 # This seems like a bad idea to make the UID a parameter. Why not just convert the SUM_MANAGER value
30 # to a UID when needed? If the UID of the SUM_MANAGER changes, we have to change the UID here.
31 q:SUMS_MANAGER_UID              388
29   q:SUMS_GROUP                    SOI
30   q:SUMLOG_BASEDIR                /usr/local/logs/SUM
31   q:SUMBIN_BASEDIR                /usr/local/bin
# Line 72 | Line 69 | a:RS_DLTIMEOUT
69   a:RS_REQTIMEOUT                          5
70   a:RS_MAXTHREADS                         32
71   q:RS_BINPATH                            /home/jsoc/cvs/Development/JSOC/bin/linux_x86_64
72 + # White-list (access to internal stuff)
73 + a:WL_HASWL                              1
74 + q:WL_FILE                               /web/jsoc/htdocs/whitelist.txt
75 + # Bin paths
76 + q:BIN_EXPORT                            /home/jsoc/cvs/Development/JSOC/bin
77 + q:SCRIPTS_EXPORT                        /home/jsoc/cvs/Development/JSOC/scripts
78 + q:BIN_PY                                /home/jsoc/bin/linux_x86_64/activepython27
79 + q:INC_PY                                /home/jsoc/ActivePython-2.7/include/python2.7
80 + q:LIB_PY                                /home/jsoc/ActivePython-2.7/lib/python2.7
81 + a:SUMS_USEMTSUMS                        1
82 + # Email registration
83 + a:REGEMAIL_TIMEOUT                      5
84  
85   __MAKE__
86   # JSOC_SDP third-party libraries used by base
# Line 436 | Line 445 | __PROJ__
445   __PROJCFG__
446   #! /bin/csh -f
447  
448 < # Project-specific configuration (like adding links to scripts to the $JSOCROOT/scripts
440 < # directory).
448 > set PERLBIN = ""
449  
450 < 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" \;
450 > if ($PERLBIN == "") then
451 >    if (-x /home/jsoc/bin/linux_x86_64/activeperl) then
452 >        set PERLBIN = "/home/jsoc/bin/linux_x86_64/activeperl"
453 >    else
454 >        set PERLBIN = "perl"
455 >    endif
456 > endif
457  
458 + # Project-specific configuration (like adding links to scripts to the $JSOCROOT/scripts
459 + # directory).
460 + 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"; } }'

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines