diff options
author | Glenn L McGrath <bug1@ihug.co.nz> | 2002-11-11 07:03:02 +0000 |
---|---|---|
committer | Glenn L McGrath <bug1@ihug.co.nz> | 2002-11-11 07:03:02 +0000 |
commit | 9af8a72f10c97e3b06862203bc4b0d4e6d10e7f5 (patch) | |
tree | dc893b8bc87626b6dafd60b8682b1c9faecc89c6 /networking | |
parent | 545106f8db3e9e40d454a8713e713b0741739b23 (diff) |
Make ifupdown use internal run_parts
Diffstat (limited to 'networking')
-rw-r--r-- | networking/ifupdown.c | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/networking/ifupdown.c b/networking/ifupdown.c index 8df2e7f5d..b2dbb0d22 100644 --- a/networking/ifupdown.c +++ b/networking/ifupdown.c @@ -35,8 +35,9 @@ #include <string.h> #include <unistd.h> -#include "busybox.h" -#include "config.h" +#include "libbb.h" +//#include "busybox.h" +//#include "config.h" #define IFUPDOWN_VERSION "0.6.4" @@ -1020,7 +1021,7 @@ static int doit(char *str) static int execute_all(interface_defn *ifd, execfn *exec, const char *opt) { int i; -// char buf[100]; + char *buf; for (i = 0; i < ifd->n_options; i++) { if (strcmp(ifd->option[i].name, opt) == 0) { @@ -1030,10 +1031,10 @@ static int execute_all(interface_defn *ifd, execfn *exec, const char *opt) } } - runparts("/etc/network/if-"opt".d"); -// sprintf(buf, "run-parts /etc/network/if-%s.d", opt); -// (*exec) (buf); - + buf = xmalloc(xstrlen(opt) + 19); + sprintf(buf, "/etc/network/if-%s.d", opt); + run_parts(&buf, 0); + free(buf); return (1); } |