/etc/conf.d/rc.$runlevel now works, #177869.

This commit is contained in:
Roy Marples
2007-05-15 15:56:35 +00:00
parent b20d600e49
commit fc597a8721
2 changed files with 11 additions and 4 deletions

View File

@ -975,6 +975,9 @@ int main (int argc, char **argv)
int opt;
service = argv[1];
applet = rc_xstrdup (basename (service));
atexit (cleanup);
/* Show help if insufficient args */
if (argc < 3) {
execl (RCSCRIPT_HELP, RCSCRIPT_HELP, service, (char *) NULL);
@ -982,9 +985,6 @@ int main (int argc, char **argv)
applet, strerror (errno));
}
applet = rc_xstrdup (basename (service));
atexit (cleanup);
#ifdef __linux__
/* coldplug events can trigger init scripts, but we don't want to run them
until after rc sysinit has completed so we punt them to the boot runlevel */