diff options
-rw-r--r-- | contrib/package/meshwizard/Makefile | 2 | ||||
-rwxr-xr-x | contrib/package/meshwizard/files/usr/bin/meshwizard/helpers/setup_uhttpd.sh | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/contrib/package/meshwizard/Makefile b/contrib/package/meshwizard/Makefile index 8ec00cf78..a9c1183d2 100644 --- a/contrib/package/meshwizard/Makefile +++ b/contrib/package/meshwizard/Makefile @@ -4,7 +4,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=meshwizard -PKG_RELEASE:=0.0.11 +PKG_RELEASE:=0.0.12 PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME) diff --git a/contrib/package/meshwizard/files/usr/bin/meshwizard/helpers/setup_uhttpd.sh b/contrib/package/meshwizard/files/usr/bin/meshwizard/helpers/setup_uhttpd.sh index 172e41477..b25a1756c 100755 --- a/contrib/package/meshwizard/files/usr/bin/meshwizard/helpers/setup_uhttpd.sh +++ b/contrib/package/meshwizard/files/usr/bin/meshwizard/helpers/setup_uhttpd.sh @@ -2,8 +2,8 @@ . $dir/functions.sh if [ "$ipv6_enabled" = "1" ]; then uci batch <<- EOF - set uhttpd.main.listen_http=":80" - set uhttpd.main.listen_https=:"443" + set uhttpd.main.listen_http="80" + set uhttpd.main.listen_https="443" EOF fi |