odhcpd: enable ipv6 server mode only when it is supported

Signed-off-by: Rosy Song <rosysong@rosinson.com>
(backported from 918ec4d549)
This commit is contained in:
Rosy Song 2018-09-12 09:21:19 +08:00 committed by Jo-Philipp Wich
parent 15a023a458
commit d9f845f761
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -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