mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-23 15:32:33 +00:00
odhcpd: enable ipv6 server mode only when it is supported
Signed-off-by: Rosy Song <rosysong@rosinson.com>
This commit is contained in:
parent
8cac857289
commit
918ec4d549
@ -8,7 +8,7 @@
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=odhcpd
|
||||
PKG_RELEASE:=1
|
||||
PKG_RELEASE:=2
|
||||
PKG_VERSION:=1.11
|
||||
|
||||
PKG_SOURCE_PROTO:=git
|
||||
|
@ -13,7 +13,7 @@ json_select ..
|
||||
|
||||
case "$protocol" in
|
||||
# only enable server mode on statically addressed lan ports
|
||||
"static") MODE=server ;;
|
||||
"static") [ -e /proc/sys/net/ipv6 ] && MODE=server || MODE=disabled ;;
|
||||
*) MODE=disabled ;;
|
||||
esac
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user