diff options
author | Manuel Munz <freifunk@somakoma.de> | 2013-07-28 13:41:10 +0000 |
---|---|---|
committer | Manuel Munz <freifunk@somakoma.de> | 2013-07-28 13:41:10 +0000 |
commit | b87051fe021d1f86020208701099c64dc53ffad5 (patch) | |
tree | 10a4286fb76b86d7f3eebf4450d9748e9780e0e0 /contrib/package/meshwizard/files/usr | |
parent | 346f01866326ac368e931cbe5c22f31288b3c2d3 (diff) |
contrib/meshwizard: fix uhttpd listen addresses when ipv6 is used
Diffstat (limited to 'contrib/package/meshwizard/files/usr')
-rwxr-xr-x | contrib/package/meshwizard/files/usr/bin/meshwizard/helpers/setup_uhttpd.sh | 4 |
1 files changed, 2 insertions, 2 deletions
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 172e414774..b25a1756ca 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 |