Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | The default behaviour for run-parts is corrected to continue if an error | Glenn L McGrath | 2003-08-30 | 1 | -2/+3 |
| | | | | | is encountered in a script. Patch by Philip Blundell | ||||
* | Bruno Randolf writes: | Eric Andersen | 2003-07-29 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | | | | | | | | | 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 | ||||
* | Put this back the way it was. I misunderstood what vodz was doing. | Eric Andersen | 2003-05-27 | 1 | -23/+17 |
| | |||||
* | This was doing some silly stuff that is not necessary when using | Eric Andersen | 2003-05-26 | 1 | -17/+23 |
| | | | | vfork(), so I have simplified it. | ||||
* | Major coreutils update. | Manuel Novoa III | 2003-03-19 | 1 | -7/+7 |
| | |||||
* | New test mode that allows run_parts to fail silently if the directory | Glenn L McGrath | 2003-01-20 | 1 | -4/+9 |
| | | | | is not found. Patch from Bastian Blank | ||||
* | Make test mode output same as official version | Glenn L McGrath | 2003-01-20 | 1 | -3/+3 |
| | |||||
* | Fix a vfork bug, by Nick Fedchik and Vladimir N. Oleynik | Glenn L McGrath | 2002-11-21 | 1 | -3/+4 |
| | |||||
* | Use vfork, by vodz | Glenn L McGrath | 2002-11-15 | 1 | -42/+22 |
| | |||||
* | Move awk from textutils to editors. Cleanup run-parts, saves 200 bytes, ↵ | Glenn L McGrath | 2002-11-11 | 1 | -0/+139 |
moves the guts of run_parts to libbb to be used by ifupdown. |