version 1.9, 2009/09/16 23:02:00
|
version 1.10, 2009/09/18 23:33:09
|
Line 61 THIRD_PARTY_INCS /usr/local/include |
|
Line 61 THIRD_PARTY_INCS /usr/local/include |
|
# subsequent installations/updates | # subsequent installations/updates |
DRMS_SAMPLE_NAMESPACE drms | DRMS_SAMPLE_NAMESPACE drms |
| |
# the following entries are for slony processing of mirrored data archives |
# The remaining definitions only need to be reviewed and modified as |
|
# appropriate if you will be doing a "make sums" as or in behalf of the |
|
# SUMS_MANAGER; they do not affect the functioning of the libraries and |
|
# applications built by a regular user with plain "make"; nevertheless |
|
# it is probably a good idea to keep them consistent for the site |
|
|
|
# The following entries are for slony processing of mirrored data archives; |
|
# they are not currently used in the "make" |
| |
# the postgres user name of the slony administrative account; normally "slony" | # the postgres user name of the slony administrative account; normally "slony" |
SLONY_ADMIN slony | SLONY_ADMIN slony |
Line 72 SLONY_LOG_BASEDIR /usr/local/logs/slony |
|
Line 79 SLONY_LOG_BASEDIR /usr/local/logs/slony |
|
# the user name(s) or email addresses for slony problem notifications | # the user name(s) or email addresses for slony problem notifications |
SLONY_NOTIFY production | SLONY_NOTIFY production |
| |
# the following entries are specific to the SUMS configuration |
# The following entries are specific to the SUMS configuration |
| |
# the user name of the SUMS administrator account - a special account is | # the user name of the SUMS administrator account - a special account is |
# recommended for multi-user systems, but not required | # recommended for multi-user systems, but not required |
Line 101 SUMS_BIN_BASEDIR /usr/local/bin |
|
Line 108 SUMS_BIN_BASEDIR /usr/local/bin |
|
# non-zero value if it is | # non-zero value if it is |
SUMS_TAPE_AVAILABLE 0 | SUMS_TAPE_AVAILABLE 0 |
| |
# SUMS Export - specify how to construct 4 arguments that represent the scp program, |
# SUMS Export - specify how to construct 4 arguments that represent the |
# the user, the host, and the port to be used in an scp cmd-line. |
# transfer program (e.g. scp), the user, the host, and the port to be used |
|
# in a command line for fetching SUMS data from a server via sum_export_svc. |
# Use a printf format string, followed by any combination of the following | # Use a printf format string, followed by any combination of the following |
# string variables: meth, user, host, domain, port. These string variables | # string variables: meth, user, host, domain, port. These string variables |
# are populated from the sums_url value in jsoc.drms_sites, which has |
# are populated from the SUMS_URL value in jsoc.drms_sites, which has the |
# the form: |
# form: |
|
# |
# <meth>://<user>@<host>.<domain>:<port> | # <meth>://<user>@<host>.<domain>:<port> |
# | # |
# The meth variable is assigned the string <meth>, the user variable is assigned |
# The meth variable is assigned the string <meth>, the user variable is |
# the string <user>, and so on. |
# assigned the string <user>, and so on. |
# | # |
# The 4 arguments will be used as follows to construct a command line: | # The 4 arguments will be used as follows to construct a command line: |
# METH -P PORT USER@HOST:file destfile (if PORT is not 0) | # METH -P PORT USER@HOST:file destfile (if PORT is not 0) |
# METH USER@HOST:file destfile (if PORT is 0) | # METH USER@HOST:file destfile (if PORT is 0) |
|
# |
|
# N.B. The default values, as provided in the commented-out definitions below, |
|
# will result in a command of the form: |
|
# METH -P PORT USER@HOST.DOMAIN:file destfile (if PORT is not 0) |
|
# METH USER@HOST.DOMAIN:file destfile (if PORT is 0) |
|
# It is only necessary to uncomment the definitions if you need to provide |
|
# a different command, for example, |
|
# METH USER@HOST-PORT:file destfile |
|
# in which case you would have to define: |
|
# SUMEXP_HOSTFMT "%s-%s", host, port |
|
# and |
|
# SUMEXP_PORTFMT "0" |
| |
# METH argument - The scp program name (eg., scp-hpn) |
# METH argument - The transfer program name (e.g. scp-hpn) |
SUMEXP_METHFMT "%s", meth |
#SUMEXP_METHFMT "%s", meth |
| |
# USER argument - The user account name on the HOST containing the source file | # USER argument - The user account name on the HOST containing the source file |
SUMEXP_USERFMT "%s", user |
#SUMEXP_USERFMT "%s", user |
| |
# HOST argument - The host machine containing the source file | # HOST argument - The host machine containing the source file |
SUMEXP_HOSTFMT "%s.%s", host, domain |
#SUMEXP_HOSTFMT "%s.%s", host, domain |
| |
# PORT argument - The port on the host machine to connect to | # PORT argument - The port on the host machine to connect to |
SUMEXP_PORTFMT "%s", port |
#SUMEXP_PORTFMT "%s", port |