source: projects/initscripts/tags/initscripts-8.91.0/sysconfig/init @ 1108

Revision 1108, 1.1 KB checked in by daisuke, 14 years ago (diff)

import initscripts-8.90.6 from internal cvs repository

Line 
1# color => new RH6.0 bootup
2# verbose => old-style bootup
3# anything else => new style bootup without ANSI colors or positioning
4BOOTUP=color
5# column to start "[  OK  ]" label in
6RES_COL=$((COLUMNS - 15))
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
9MOVE_TO_COL="echo -en \\033[${RES_COL}G"
10# terminal sequence to set color to a 'success' color (currently: green)
11SETCOLOR_SUCCESS="echo -en \\033[0;32m"
12# terminal sequence to set color to a 'failure' color (currently: red)
13SETCOLOR_FAILURE="echo -en \\033[0;31m"
14# terminal sequence to set color to a 'warning' color (currently: yellow)
15SETCOLOR_WARNING="echo -en \\033[0;33m"
16# terminal sequence to reset to the default color.
17SETCOLOR_NORMAL="echo -en \\033[0;39m"
18# default kernel loglevel on boot (syslog will reset this)
19LOGLEVEL=3
20# Set to anything other than 'no' to allow hotkey interactive startup...
21PROMPT=yes
22# Set to 'yes' to allow probing for devices with swap signatures
23AUTOSWAP=no
24# What ttys should gettys be started on?
25ACTIVE_CONSOLES=/dev/tty[1-6]
Note: See TracBrowser for help on using the repository browser.