| 1 | # This is our configuration management configuration. It is sourced by the |
|---|
| 2 | # relevant Rescomp scripts. |
|---|
| 3 | |
|---|
| 4 | # $Id$ |
|---|
| 5 | |
|---|
| 6 | # The location of our shell library |
|---|
| 7 | REPO_LIBRARY="/usr/local/rescomp/lib/confmanlib.sh" |
|---|
| 8 | |
|---|
| 9 | # The protocol to use for contacting our repository: |
|---|
| 10 | REPO_PROTOCOL="svn+ssh://" |
|---|
| 11 | |
|---|
| 12 | # The hostname providing our config repository: |
|---|
| 13 | REPO_HOSTNAME="kermit.rescomp.berkeley.edu" |
|---|
| 14 | |
|---|
| 15 | # The path on the remote host to find the repository: |
|---|
| 16 | REPO_PATH="/usr/local/rescomp/repo/conf/conf" |
|---|
| 17 | |
|---|
| 18 | # The directory from the root of the repository to our checkpoints: |
|---|
| 19 | REPO_CHECKPTS="checkpoints" |
|---|
| 20 | |
|---|
| 21 | # Where to keep our "working copy" of the system: |
|---|
| 22 | WORK_PATH="${HOME}/src/conf" |
|---|
| 23 | |
|---|
| 24 | # The path to our current host's recipe file |
|---|
| 25 | RECIPE_PATH="/usr/local/rescomp/etc/recipe" |
|---|
| 26 | |
|---|
| 27 | # The list of singularities on this host |
|---|
| 28 | SINGULARITIES="/etc/rc.conf" |
|---|
| 29 | |
|---|
| 30 | # The warning message for all files |
|---|
| 31 | CONF_WARNING="WARNING! This file is under confman revision control." |
|---|
| 32 | CONF_WARNING="${CONF_WARNING} DO NOT MODIFY DIRECTLY!" |
|---|
| 33 | |
|---|
| 34 | # Default file properties |
|---|
| 35 | DEFAULT_MODE_DIRECTORY="0555" |
|---|
| 36 | DEFAULT_MODE_FILE="0444" |
|---|
| 37 | DEFAULT_OWNER="root" |
|---|
| 38 | DEFAULT_GROUP="wheel" |
|---|
| 39 | DEFAULT_COMMENT="#" |
|---|
| 40 | |
|---|
| 41 | # Enable or disable debugging |
|---|
| 42 | DEBUG="false" |
|---|
| 43 | |
|---|
| 44 | # A prefix to the live filesystem image. This should be unset if you don't |
|---|
| 45 | # want to use a prefix. Useful for testing confman, by having files installed |
|---|
| 46 | # into an arbitrary system root, instead of the actual system. |
|---|
| 47 | #LIVE_ROOT="/home/ccowart/img" |
|---|
| 48 | |
|---|
| 49 | |
|---|