3 |
- |
1 |
# cas configuration file
|
|
|
2 |
#
|
|
|
3 |
# Things to remember:
|
|
|
4 |
#
|
|
|
5 |
# Acceptable boolean values
|
|
|
6 |
# to enable: "1", "yes", "true", and "on"
|
|
|
7 |
# to disable: "0", "no", "false", and "off"
|
|
|
8 |
#
|
|
|
9 |
# Required settings to be defined:
|
|
|
10 |
# kernels, rpmFilter, debugs, workDirectory, database
|
|
|
11 |
|
|
|
12 |
[settings]
|
|
|
13 |
# Set the user you wish to run cas as.
|
|
|
14 |
casuser=root
|
|
|
15 |
|
|
|
16 |
# Set keytype for user authentication
|
|
|
17 |
# Options: RSA/DSS
|
|
|
18 |
sshkey=dss
|
|
|
19 |
|
|
|
20 |
# Where kernel-debuginfo packages are stored
|
|
|
21 |
# NOTE: this _can_ include symlinked directories, just be careful they are
|
|
|
22 |
# indefinately recursive
|
|
|
23 |
kernels=/mnt/kernels
|
|
|
24 |
|
|
|
25 |
# Compose emacs regular expression for determing what
|
|
|
26 |
# kernel debug rpms you wish to search for
|
|
|
27 |
rpmFilter=.*kerne.+-debuginfo-[0-9].*\.rpm
|
|
|
28 |
|
|
|
29 |
# Define where to store necessary debug information
|
|
|
30 |
# NOTE: This is a temporary storage area for when
|
|
|
31 |
# cpio is run against an rpm and extract the debug kernel
|
|
|
32 |
# for a small amount of time. This could be something like
|
|
|
33 |
# /tmp if space permitted
|
|
|
34 |
debugs=/tmp
|
|
|
35 |
|
|
|
36 |
# debug level (DEBUG, INFO)
|
|
|
37 |
debugLevel=DEBUG
|
|
|
38 |
|
|
|
39 |
# define work directory
|
|
|
40 |
workDirectory=/cores
|
|
|
41 |
|
|
|
42 |
# Mail server, e.g. mail.example.com
|
|
|
43 |
# Provides job results via email
|
|
|
44 |
stmphost=mail.example.com
|
|
|
45 |
|
|
|
46 |
# database connection info
|
|
|
47 |
database=/var/db/cas/cas.db
|
|
|
48 |
|
|
|
49 |
[maintenance]
|
|
|
50 |
# Time in days to keep jobs and its associated files
|
|
|
51 |
purgeLimit=90
|
|
|
52 |
|
|
|
53 |
# Enable if want to automatically check and purge data
|
|
|
54 |
# whenever cas-admin is run
|
|
|
55 |
autoPurge=no
|
|
|
56 |
|
|
|
57 |
[advanced]
|
|
|
58 |
# if running a x86_64 system and wish to analyze 32bit
|
|
|
59 |
# cores, define the location of 32bit crash binary
|
|
|
60 |
# EXAMPLE USAGE:
|
|
|
61 |
# rpm --relocate /usr/bin=/usr/local/i386 -ivh crash*i386.rpm
|
|
|
62 |
|
|
|
63 |
# crash_32=/usr/local/i386/crash
|
|
|
64 |
|
|
|
65 |
# Define a buffersize to be set when reading a core file
|
|
|
66 |
# Valid options are {number, None, or blank}
|
|
|
67 |
# If set to None or blank default will be ~515M
|
|
|
68 |
# buffersize=None
|