3 |
- |
1 |
# color => new RH6.0 bootup
|
|
|
2 |
# verbose => old-style bootup
|
|
|
3 |
# anything else => new style bootup without ANSI colors or positioning
|
|
|
4 |
BOOTUP=color
|
|
|
5 |
# column to start "[ OK ]" label in
|
|
|
6 |
RES_COL=60
|
|
|
7 |
# terminal sequence to move to that column. You could change this
|
|
|
8 |
# to something like "tput hpa ${RES_COL}" if your terminal supports it
|
|
|
9 |
MOVE_TO_COL="echo -en \\033[${RES_COL}G"
|
|
|
10 |
# terminal sequence to set color to a 'success' color (currently: green)
|
|
|
11 |
SETCOLOR_SUCCESS="echo -en \\033[0;32m"
|
|
|
12 |
# terminal sequence to set color to a 'failure' color (currently: red)
|
|
|
13 |
SETCOLOR_FAILURE="echo -en \\033[0;31m"
|
|
|
14 |
# terminal sequence to set color to a 'warning' color (currently: yellow)
|
|
|
15 |
SETCOLOR_WARNING="echo -en \\033[0;33m"
|
|
|
16 |
# terminal sequence to reset to the default color.
|
|
|
17 |
SETCOLOR_NORMAL="echo -en \\033[0;39m"
|
|
|
18 |
# Set to anything other than 'no' to allow hotkey interactive startup...
|
|
|
19 |
PROMPT=yes
|
|
|
20 |
# Set to 'yes' to allow probing for devices with swap signatures
|
|
|
21 |
AUTOSWAP=no
|
|
|
22 |
# What ttys should gettys be started on?
|
|
|
23 |
ACTIVE_CONSOLES=/dev/tty[1-6]
|
|
|
24 |
# Set to '/sbin/sulogin' to prompt for password on single-user mode
|
|
|
25 |
# Set to '/sbin/sushell' otherwise
|
|
|
26 |
SINGLE=/sbin/sushell
|