source: tags/confman-1.0/confman.conf @ 91

Revision 91, 1.4 KB checked in by ccowart, 6 years ago (diff)

Debugging and some file descriptor corrections.

  • Property rc:mode set to 0444
  • Property svn:keywords set to Date Rev Author Id
Line 
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
7REPO_LIBRARY="/usr/local/rescomp/lib/confmanlib.sh"
8
9# The protocol to use for contacting our repository:
10REPO_PROTOCOL="svn+ssh://"
11
12# The hostname providing our config repository:
13REPO_HOSTNAME="kermit.rescomp.berkeley.edu"
14
15# The path on the remote host to find the repository:
16REPO_PATH="/usr/local/rescomp/repo/conf/conf"
17
18# The directory from the root of the repository to our checkpoints:
19REPO_CHECKPTS="checkpoints"
20
21# Where to keep our "working copy" of the system:
22WORK_PATH="${HOME}/src/conf"
23
24# The path to our current host's recipe file
25RECIPE_PATH="/usr/local/rescomp/etc/recipe"
26
27# The list of singularities on this host
28SINGULARITIES="/etc/rc.conf"
29
30# The warning message for all files
31CONF_WARNING="WARNING! This file is under confman revision control."
32CONF_WARNING="${CONF_WARNING} DO NOT MODIFY DIRECTLY!"
33
34# Default file properties
35DEFAULT_MODE_DIRECTORY="0555"
36DEFAULT_MODE_FILE="0444"
37DEFAULT_OWNER="root"
38DEFAULT_GROUP="wheel"
39DEFAULT_COMMENT="#"
40
41# Enable or disable debugging
42DEBUG="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
Note: See TracBrowser for help on using the repository browser.