projects
/
15.05
/
openwrt.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
83e01b3
)
comgt: fireup a dhcpv6-client for directip as well
author
Steven Barth
<steven@midlink.org>
Fri, 26 Sep 2014 13:58:40 +0000
(13:58 +0000)
committer
Steven Barth
<steven@midlink.org>
Fri, 26 Sep 2014 13:58:40 +0000
(13:58 +0000)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@42670
3c298f89
-4303-0410-b956-
a3cf2f4a3e73
package/network/utils/comgt/files/directip.sh
patch
|
blob
|
history
diff --git
a/package/network/utils/comgt/files/directip.sh
b/package/network/utils/comgt/files/directip.sh
index
6b9326d
..
2bfdf80
100644
(file)
--- a/
package/network/utils/comgt/files/directip.sh
+++ b/
package/network/utils/comgt/files/directip.sh
@@
-78,6
+78,12
@@
proto_directip_setup() {
json_add_string proto "dhcp"
ubus call network add_dynamic "$(json_dump)"
+ json_init
+ json_add_string name "${interface}_dhcpv6"
+ json_add_string ifname "@$interface"
+ json_add_string proto "dhcpv6"
+ ubus call network add_dynamic "$(json_dump)"
+
return 0
}