diff options
author | Felix Fietkau <nbd@openwrt.org> | 2011-10-20 16:29:58 +0200 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2011-10-20 16:29:58 +0200 |
commit | cd6ff76cf1ae89d1148c3399b725103a144aca3e (patch) | |
tree | fb453e8fd741f2485af0abb0a8dc2d1e5847dbd4 | |
parent | ea6dec1329b08109387f091b60a13d1b40839317 (diff) |
fix path and invocation for hotplug calls
-rw-r--r-- | interface-event.c | 2 | ||||
-rw-r--r-- | netifd.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/interface-event.c b/interface-event.c index 83ac6f7..4e0773d 100644 --- a/interface-event.c +++ b/interface-event.c @@ -40,7 +40,7 @@ run_cmd(const char *ifname, const char *device, bool up) if (device) setenv("DEVICE", device, 1); argv[0] = hotplug_cmd_path; - argv[1] = "network"; + argv[1] = "iface"; argv[2] = NULL; execvp(argv[0], argv); exit(127); @@ -19,7 +19,7 @@ #define DEFAULT_RESOLV_CONF "./tmp/resolv.conf" #else #define DEFAULT_MAIN_PATH "/lib/netifd" -#define DEFAULT_HOTPLUG_PATH "/sbin/hotplug-cmd" +#define DEFAULT_HOTPLUG_PATH "/sbin/hotplug-call" #define DEFAULT_RESOLV_CONF "/tmp/resolv.conf.auto" #endif |