Age | Commit message (Collapse) | Author | |
---|---|---|---|
2004-01-23 | Correct check for only one of K or S options | Glenn L McGrath | |
2004-01-22 | Check one and only one of start, stop are given. | Glenn L McGrath | |
Remove some global variables. #define some getopt values. | |||
2003-11-21 | Fix warning | Glenn L McGrath | |
2003-11-14 | NEW APPLET: pipe_progress, used by debian installer | Glenn L McGrath | |
2003-10-29 | fix a bug where `which' doesn't check whether the file passed as an argument | Glenn L McGrath | |
is a regular file, patch by Arthur Othieno | |||
2003-10-22 | sigh | Eric Andersen | |
2003-10-22 | Tomasz Motylewski reported that the 'which' applet does not find | Eric Andersen | |
files when the full file PATH is specified. This patch from Arthur Othieno fixes it. | |||
2003-08-06 | Patch from Eric Spakman to update "run-parts" help text in Config.in. | Eric Andersen | |
2003-07-30 | Do not require that the signal number be specified | Eric Andersen | |
2003-07-29 | Bruno Randolf writes: | Eric Andersen | |
this patch fixes run_parts when it's called by ifupdown. 1) argv has to be a NULL terminated char* array, not just a string. 2) run_parts now explicitly sets the environment. this environment is populated from the /etc/network/interfaces config file and is needed by the scripts in /etc/network/if-pre-up.d/. when run-parts is called from the command line the environment is taken from the current process. Vladimir Oleynik then wrote: You can simplify this if use: + bb_xasprintf(&buf[0], "/etc/network/if-%s.d", opt); + buf[1] = NULL; + + run_parts(&buf, 2, environ); + free(buf[0]); --w vodz | |||
2003-07-26 | Move start_stop_daemon to debianutils. | Eric Andersen | |
Cleanup run_parts a bit and add long opts | |||
2003-07-26 | cleanup and add long options | Eric Andersen | |
2003-07-14 | Update a bunch of docs. Run a script to update my email addr. | Eric Andersen | |
2003-07-05 | Patch from Kent Robotti adding a bunch of needed docs! | Eric Andersen | |
-Erik | |||
2003-04-26 | Add the -d option, its used by old versions of config.guess, change to | Glenn L McGrath | |
use getopt. | |||
2003-03-19 | Major coreutils update. | Manuel Novoa III | |
2003-01-08 | Patch by Stewart Brodie to terminate the string array correctly | Glenn L McGrath | |
2002-12-05 | Kill the now obsolete docs/Configure.help file, and move all existing | Eric Andersen | |
help texts into their respective Config.in file. -Erik | |||
2002-12-05 | Yet another major rework of the BusyBox config system, using the considerably | Eric Andersen | |
modified Kbuild system I put into uClibc. With this, there should be no more need to modify Rules.mak since I've moved all the interesting options into the config system. I think I've got everything updated, but you never know, I may have made some mistakes, so watch closely. -Erik | |||
2002-11-11 | Move awk from textutils to editors. Cleanup run-parts, saves 200 bytes, ↵ | Glenn L McGrath | |
moves the guts of run_parts to libbb to be used by ifupdown. | |||
2002-11-11 | Move readlink, mktemp, run-parts and which to a new debianutils dir. | Glenn L McGrath | |
2002-07-03 | Scrub pwd.h and grp.h handling so we don't have to play any | Eric Andersen | |
silly games. -Erik | |||
2002-06-05 | plug fd leak noticed by Russ Dill | Eric Andersen | |
-Erik | |||
2002-06-04 | Fix for broken handling off BusyBox's own pwd/grp implementations | Robert Griebl | |
[Parts of this patch may overlap with my other two patches] | |||
2002-01-26 | Patch from Russ Dill <Russ.Dill@asu.edu>. From the | Eric Andersen | |
start-stop-daemon man page: -b|--background Typically used with programs that don't detach on their own. This option will force start-stop-daemon to fork before starting the process, and force it into the background. WARNING: start-stop-daemon cannot check the exit status if the process fails to execute for any reason. This is a last resort, and is only meant for programs that either make no sense forking on their own, or where it's not feasible to add the code for it to do this itself. This is usefull for applets like watchdog | |||
2001-10-31 | patch from vodz: | Eric Andersen | |
I reduce 148 bytes from start_stop_daemon.c code. Also reduced memory allocated. | |||
2001-10-24 | Fixup the location of pwd.h and grp.h | Eric Andersen | |
2001-10-18 | Commit the start-stop-daemon applet. This was contributed by David | Eric Andersen | |
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! |