summaryrefslogtreecommitdiff
path: root/debianutils (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* fix a bug where `which' doesn't check whether the file passed as an argumentGlenn L McGrath2003-10-291-1/+3
| | | | is a regular file, patch by Arthur Othieno
* sighEric Andersen2003-10-221-1/+1
|
* Tomasz Motylewski reported that the 'which' applet does not findEric Andersen2003-10-221-12/+30
| | | | | | files when the full file PATH is specified. This patch from Arthur Othieno fixes it.
* Patch from Eric Spakman to update "run-parts" help text in Config.in.Eric Andersen2003-08-061-2/+2
|
* Do not require that the signal number be specifiedEric Andersen2003-07-301-2/+4
|
* Bruno Randolf writes:Eric Andersen2003-07-291-1/+3
| | | | | | | | | | | | | | | | | | | | | | | 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
* Move start_stop_daemon to debianutils.Eric Andersen2003-07-263-25/+40
| | | | Cleanup run_parts a bit and add long opts
* cleanup and add long optionsEric Andersen2003-07-261-59/+41
|
* Update a bunch of docs. Run a script to update my email addr.Eric Andersen2003-07-143-4/+3
|
* Patch from Kent Robotti adding a bunch of needed docs!Eric Andersen2003-07-051-6/+8
| | | | -Erik
* Add the -d option, its used by old versions of config.guess, change toGlenn L McGrath2003-04-261-3/+26
| | | | use getopt.
* Major coreutils update.Manuel Novoa III2003-03-195-17/+17
|
* Patch by Stewart Brodie to terminate the string array correctlyGlenn L McGrath2003-01-081-1/+2
|
* Kill the now obsolete docs/Configure.help file, and move all existingEric Andersen2002-12-051-1/+10
| | | | | help texts into their respective Config.in file. -Erik
* Yet another major rework of the BusyBox config system, using the considerablyEric Andersen2002-12-052-15/+33
| | | | | | | | 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
* Move awk from textutils to editors. Cleanup run-parts, saves 200 bytes, ↵Glenn L McGrath2002-11-111-190/+44
| | | | moves the guts of run_parts to libbb to be used by ifupdown.
* Move readlink, mktemp, run-parts and which to a new debianutils dir.Glenn L McGrath2002-11-117-0/+499
|
* Scrub pwd.h and grp.h handling so we don't have to play anyEric Andersen2002-07-031-1/+1
| | | | | silly games. -Erik
* plug fd leak noticed by Russ DillEric Andersen2002-06-051-0/+1
| | | | -Erik
* Fix for broken handling off BusyBox's own pwd/grp implementationsRobert Griebl2002-06-041-1/+1
| | | | [Parts of this patch may overlap with my other two patches]
* Patch from Russ Dill <Russ.Dill@asu.edu>. From theEric Andersen2002-01-261-1/+10
| | | | | | | | | | | | | | | | 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
* patch from vodz:Eric Andersen2001-10-311-36/+26
| | | | | I reduce 148 bytes from start_stop_daemon.c code. Also reduced memory allocated.
* Fixup the location of pwd.h and grp.hEric Andersen2001-10-241-1/+1
|
* Commit the start-stop-daemon applet. This was contributed by DavidEric Andersen2001-10-181-0/+271
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!