diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-10-18 19:33:06 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-10-18 19:33:06 +0000 |
commit | c2af1ee03667fbcf5bd456ea26e9f9e317a892a1 (patch) | |
tree | e25a68be710fe88ce6db0f4191caa47ba5f43d98 /include | |
parent | bcca3317b59a0180f0b42428e9c25405bc423520 (diff) |
Commit the start-stop-daemon applet. This was contributed by David
Kimdon <dwhedon@gordian.com> on october 7th -- the day I was fired from
Lineo. So it seems I totally forgot about this patch until now.
Sorry about that David!
Diffstat (limited to 'include')
-rw-r--r-- | include/applets.h | 3 | ||||
-rw-r--r-- | include/usage.h | 14 |
2 files changed, 17 insertions, 0 deletions
diff --git a/include/applets.h b/include/applets.h index 461c878df..5ecfe3cba 100644 --- a/include/applets.h +++ b/include/applets.h @@ -386,6 +386,9 @@ #ifdef BB_SORT APPLET(sort, sort_main, _BB_DIR_USR_BIN) #endif +#ifdef BB_START_STOP_DAEMON + APPLET_ODDNAME("start-stop-daemon", start_stop_daemon_main, _BB_DIR_SBIN, start_stop_daemon) +#endif #ifdef BB_STTY APPLET(stty, stty_main, _BB_DIR_BIN) #endif diff --git a/include/usage.h b/include/usage.h index 0d830c9cc..5e514274a 100644 --- a/include/usage.h +++ b/include/usage.h @@ -1458,6 +1458,20 @@ "e\n" \ "f\n" +#define start_stop_daemon_trivial_usage \ + "[OPTIONS]" +#define start_stop_daemon_full_usage \ + "Program to start and stop services.\n"\ + "Options:\n" \ + "-S\t\t\tstart\n"\ + "-K\t\t\tstop\n"\ + "-x <executable>\t\tprogram to start/check if it is running\n"\ + "-p <pid-file>\t\tpid file to check\n"\ + "-u <username>|<uid>\tstop this user's processes\n"\ + "-n <process-name>\tstop processes with this name\n"\ + "-s <signal>\t\tsignal to send (default 15)\n"\ + "-a <pathname>\t\tprogram to start (default <executable>)\n" + #define stty_trivial_usage \ "[-a|g] [-F DEVICE] [SETTING]..." #define stty_full_usage \ |