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

Comparing configsdp.txt (file contents):
Revision 1.32 by jsoc, Fri Mar 21 19:38:15 2014 UTC vs.
Revision 1.47 by arta, Mon Mar 9 17:03:05 2015 UTC

# Line 1 | Line 1
1 # ART - test6 CVS admin locking.
1   # This file contains JSOC_SDP-specific configuration information. It is used only if the '-sdp' flag is used
2   # as an argument to the check-out script (checkoutDRMS.pl). To change the configuration at Stanford, edit
3   # this file directly, and commit those changes to the source-tree repository.
# Line 24 | Line 23 | q:SUMS_DB_HOST                  hmidb3
23   q:SUMPGPORT                     5434
24   a:DRMS_LOCAL_SITE_CODE          0x0000
25   q:DBNAME                        jsoc
26 <
26 > q:WEB_DBUSER                    apache
27   q:POSTGRES_ADMIN                postgres
28   q:SUMS_MANAGER                  production
30 # This seems like a bad idea to make the UID a parameter. Why not just convert the SUM_MANAGER value
31 # to a UID when needed? If the UID of the SUM_MANAGER changes, we have to change the UID here.
32 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 56 | Line 52 | q:SUMRM_NOOP                       0
52   q:SUMRM_USER                        production
53   q:SUMRM_NORUN_START                 0
54   q:SUMRM_NORUN_STOP              0
55 + # JMD
56 + p:JMD_IS_INSTALLED              0
57 + q:JMD_URL                       http://localhost:8080/JMD/JMD
58 + # Remote SUMS
59 + q:RS_SITE_TABLE                         drms.rs_sites
60 + q:RS_REQUEST_TABLE                      drms.rs_requests
61 + q:RS_SU_TABLE                           drms.rs_sus
62 + q:RS_DBNAME                             jsoc
63 + q:RS_DBHOST                             hmidb
64 + a:RS_DBPORT                             5432
65 + q:RS_DBUSER                             production
66 + q:RS_LOCKFILE                           /home/jsoc/locks/remotesums.lck
67 + q:RS_LOGDIR                             /home/jsoc/jsoclogs/rsums
68 + a:RS_DLTIMEOUT                          30
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:BIN_PY                                /home/jsoc/bin/linux_x86_64/activepython27
78 + # Email registration
79 + a:REGEMAIL_TIMEOUT                      5
80  
81   __MAKE__
82   # JSOC_SDP third-party libraries used by base
# Line 160 | Line 181 | MPI_LIBS:AVX            /home/jsoc/avx/l
181   MPI_PATH:X86_64         /home/jsoc/mpich2/bin
182   MPI_PATH:AVX            /home/jsoc/avx/bin
183  
184 + TAR_INCS:X86_64         /home/jsoc/include
185 + TAR_INCS:IA32           /home/jsoc/include
186 + TAR_INCS:AVX            /home/jsoc/avx/include
187 + TAR_INCS:IA64           /home/jsoc/include
188 +
189 + TAR_LIBS:X86_64         /home/jsoc/lib/linux-x86_64
190 + TAR_LIBS:IA32           /home/jsoc/lib/linux-ia32
191 + TAR_LIBS:AVX            /home/jsoc/lib/linux_avx
192 + TAR_LIBS:IA64           /home/jsoc/lib/linux-ia64
193 +
194   # Set custom make file to tell the make system that the gcc cfitsio library is called
195   # libcfitsio_gcc.a
196   _CUST_
# Line 218 | Line 249 | __PROJ__
249          </filters>
250     </proj>
251     <proj>
252 +        <name>mhd_32daily</name>
253 +        <subdirs>
254 +                <subdir>apps</subdir>
255 +        </subdirs>
256 +   </proj>
257 +   <proj>
258          <name>mhd_64cr</name>
259          <subdirs>
260                  <subdir>apps</subdir>
# Line 271 | Line 308 | __PROJ__
308          <subdirs>
309              <subdir>apps</subdir>
310              <subdir>libs/dtgf</subdir>
311 +            <subdir>libs/inv2d</subdir>
312              <subdir>libs/pkbgn</subdir>
313              <subdir>libs/projection</subdir>
314          </subdirs>
# Line 403 | Line 441 | __PROJ__
441   __PROJCFG__
442   #! /bin/csh -f
443  
444 < # Project-specific configuration (like adding links to scripts to the $JSOCROOT/scripts
407 < # directory).
444 > set PERLBIN = ""
445  
446 < 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" \;
446 > if ($PERLBIN == "") then
447 >    if (-x /home/jsoc/bin/linux_x86_64/activeperl) then
448 >        set PERLBIN = "/home/jsoc/bin/linux_x86_64/activeperl"
449 >    else
450 >        set PERLBIN = "perl"
451 >    endif
452 > endif
453  
454 + # Project-specific configuration (like adding links to scripts to the $JSOCROOT/scripts
455 + # directory).
456 + 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