--- openrc-0.4.0/src/rc/runscript.c.orig 2008-12-11 11:50:58.000000000 +0100 +++ openrc-0.4.0/src/rc/runscript.c 2008-12-11 11:53:21.000000000 +0100 @@ -965,9 +965,12 @@ hook_out = RC_HOOK_SERVICE_STOP_OUT; rc_plugin_run(RC_HOOK_SERVICE_STOP_IN, applet); - if (!rc_runlevel_stopping() && - rc_service_in_runlevel(service, RC_LEVEL_BOOT)) - ewarn ("WARNING: you are stopping a boot service"); + if (!rc_runlevel_stopping()) { + if (rc_service_in_runlevel(service, RC_LEVEL_SYSINIT)) + ewarn ("WARNING: you are stopping a sysinit service"); + else if (rc_service_in_runlevel(service, RC_LEVEL_BOOT)) + ewarn ("WARNING: you are stopping a boot service"); + } if (deps && !(state & RC_SERVICE_WASINACTIVE)) { errno = 0;