| … | |
… | |
| 715 | exit (mountinfo (argc, argv)); |
715 | exit (mountinfo (argc, argv)); |
| 716 | else if (strcmp (applet, "rc-depend") == 0) |
716 | else if (strcmp (applet, "rc-depend") == 0) |
| 717 | exit (rc_depend (argc, argv)); |
717 | exit (rc_depend (argc, argv)); |
| 718 | else if (strcmp (applet, "rc-status") == 0) |
718 | else if (strcmp (applet, "rc-status") == 0) |
| 719 | exit (rc_status (argc, argv)); |
719 | exit (rc_status (argc, argv)); |
|
|
720 | else if (strcmp (applet, "rc-update") == 0 || |
|
|
721 | strcmp (applet, "update-rc") == 0) |
|
|
722 | exit (rc_update (argc, argv)); |
| 720 | else if (strcmp (applet, "runscript") == 0) |
723 | else if (strcmp (applet, "runscript") == 0) |
| 721 | exit (runscript (argc, argv)); |
724 | exit (runscript (argc, argv)); |
| 722 | else if (strcmp (applet, "start-stop-daemon") == 0) |
725 | else if (strcmp (applet, "start-stop-daemon") == 0) |
| 723 | exit (start_stop_daemon (argc, argv)); |
726 | exit (start_stop_daemon (argc, argv)); |
| 724 | |
727 | |