source: tags/confman-1.3.1/confman.conf @ 100

Revision 100, 1.5 KB checked in by ccowart, 6 years ago (diff)

Mistake in default conf file

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