blob: 2472903c6aaac791b1b6e46441652244977f1dd2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
# enable/disable parallel initscript bootup support
SEREL_BOOT=yes
# no boot daemon logging
# SERELD_OPTIONS="-d 0"
# max boot daemon logging
SERELD_OPTIONS="-d 5 -l /var/log/sereld.log --log-truncate"
# uncomment the following two lines to turn on max client logging
# export SEREL_DEBUG_LEVEL=3
# export SEREL_LOG_NAME=/var/log/serelc.log
# This generates an xml/rdf file that can be used to visualize
# initscript dependencies. See http://www.fastboot.org/visual.html
# SEREL_GENERATE_RDF=/var/log/serel.rdf
# color => RH6.x/7.x style bootup
# verbose => old style bootup
# anything else => new style bootup without ANSI colors or positioning
BOOTUP=color
# column to start "[ OK ]" label in
RES_COL=60
# terminal sequence to move to that column. You could change this
# to something like "tput hpa ${RES_COL}" if your terminal supports it
MOVE_TO_COL="echo -en \\033[${RES_COL}G"
# terminal sequence to set color to a 'success' color (currently: green)
SETCOLOR_SUCCESS="echo -en \\033[0;32m"
# terminal sequence to set color to a 'failure' color (currently: red)
SETCOLOR_FAILURE="echo -en \\033[0;31m"
# terminal sequence to set color to a 'warning' color (currently: yellow)
SETCOLOR_WARNING="echo -en \\033[0;33m"
# terminal sequence to reset to the default color.
SETCOLOR_NORMAL="echo -en \\033[0;39m"
# default kernel loglevel on boot (syslog will reset this)
LOGLEVEL=3
# Set to anything other than 'no' to allow hotkey interactive startup...
PROMPT=yes
|