From 58e46ac6d7978de0938be9d76006b1e92e5931b9 Mon Sep 17 00:00:00 2001 From: "David Kaspar [Dee'Kej]" Date: Thu, 12 Oct 2017 17:34:15 +0200 Subject: sysconfig/init* files dropped Users can still create the /etc/sysconfig/init file manually to override the default values, which are now taken from init.d/functions. --- rc.d/init.d/functions | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) (limited to 'rc.d') diff --git a/rc.d/init.d/functions b/rc.d/init.d/functions index fd685682..63686737 100644 --- a/rc.d/init.d/functions +++ b/rc.d/init.d/functions @@ -78,15 +78,24 @@ if [ -z "${BOOTUP:-}" ]; then if [ -f /etc/sysconfig/init ]; then . /etc/sysconfig/init else - # This all seem confusing? Look in /etc/sysconfig/init, - # or in /usr/share/doc/initscripts-*/sysconfig.txt + # verbose ->> very (very!) old bootup look (prior to RHL-6.0?) + # color ->> default bootup look + # other ->> default bootup look without ANSI colors or positioning BOOTUP=color + # Column to start "[ OK ]" label in: RES_COL=60 + # terminal sequence to move to that column: MOVE_TO_COL="echo -en \\033[${RES_COL}G" + # Terminal sequence to set color to a 'success' (bright green): SETCOLOR_SUCCESS="echo -en \\033[1;32m" + # Terminal sequence to set color to a 'failure' (bright red): SETCOLOR_FAILURE="echo -en \\033[1;31m" + # Terminal sequence to set color to a 'warning' (bright yellow): SETCOLOR_WARNING="echo -en \\033[1;33m" + # Terminal sequence to reset to the default color: SETCOLOR_NORMAL="echo -en \\033[0;39m" + + # Verbosity of logging: LOGLEVEL=1 fi if [ "$CONSOLETYPE" = "serial" ]; then -- cgit v1.2.1