From: Jo-Philipp Wich Date: Fri, 28 May 2021 13:23:14 +0000 (+0200) Subject: ubox: fix init script validation of log_ip option X-Git-Tag: v21.02.0-rc2~2 X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fopenwrt.git;a=commitdiff_plain;h=0bc3f51aa650ec9fea995233714219d2cb63f53c ubox: fix init script validation of log_ip option The underlying logread process uses usock() to handle remote connections which is able to handle both hostnames and IP addresses. Ref: https://github.com/openwrt/luci/issues/5077 Signed-off-by: Jo-Philipp Wich (cherry picked from commit ec83fb9ced138b7945135adffb9ff0ba63b695ec) --- diff --git a/package/system/ubox/Makefile b/package/system/ubox/Makefile index f32e93ca80..9ba4abdd58 100644 --- a/package/system/ubox/Makefile +++ b/package/system/ubox/Makefile @@ -1,7 +1,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=ubox -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE_PROTO:=git PKG_SOURCE_URL=$(PROJECT_GIT)/project/ubox.git diff --git a/package/system/ubox/files/log.init b/package/system/ubox/files/log.init index 250f805b44..c4802d4199 100644 --- a/package/system/ubox/files/log.init +++ b/package/system/ubox/files/log.init @@ -15,7 +15,7 @@ validate_log_section() 'log_file:string' \ 'log_size:uinteger' \ 'log_hostname:string' \ - 'log_ip:ipaddr' \ + 'log_ip:host' \ 'log_remote:bool:1' \ 'log_port:port:514' \ 'log_proto:or("tcp", "udp"):udp' \