From: Steven Barth Date: Wed, 23 Jul 2014 16:04:47 +0000 (+0200) Subject: Make dynamic interfaces always autostart X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fnetifd.git;a=commitdiff_plain;h=3f88c1dc2f738bc50dfa47038fde2565daf84385;ds=sidebyside Make dynamic interfaces always autostart Signed-off-by: Steven Barth --- diff --git a/interface.c b/interface.c index ea25208..4c92f10 100644 --- a/interface.c +++ b/interface.c @@ -709,6 +709,7 @@ interface_alloc(const char *name, struct blob_attr *config) void interface_set_dynamic(struct interface *iface) { iface->dynamic = true; + iface->autostart = true; iface->node.version = -1; // Don't delete on reload }