--- trunk/magellan-initscripts/etc/rc.d/init.d/functions 2010/07/14 13:07:30 1093 +++ trunk/initscripts/sysvinit/rc/functions 2011/06/04 21:05:01 1356 @@ -47,6 +47,8 @@ svcfstype="tmpfs" svcsize=1024 +rc_echo() { echo $@; } +rc_print() { rc_echo -e "${COLOREDSTAR}$@"; } # dummy function; needed if splashutils are not installed splash() { return 0; } @@ -139,6 +141,11 @@ print_status success else print_status failure + + if [[ ${SPLASH_VERBOSE_ON_ERRORS} = 1 ]] + then + splash "rc_verbose" "${runlevel}" + fi fi return ${error_value} @@ -453,3 +460,6 @@ return 1 } + +start_devicemanager() { touch /dev/.none; return 0; } +stop_devicemanager() { return 0; }