From 595c637c3bb798f85a93a07d45c4ef568a3ce706 Mon Sep 17 00:00:00 2001 From: Manuel Munz Date: Sat, 30 May 2015 20:45:17 +0200 Subject: [PATCH] meshwizard: use different port (9091) for ipv6 jsoninfo --- .../meshwizard/files/usr/bin/meshwizard/helpers/setup_olsrd.sh | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/contrib/package/meshwizard/files/usr/bin/meshwizard/helpers/setup_olsrd.sh b/contrib/package/meshwizard/files/usr/bin/meshwizard/helpers/setup_olsrd.sh index 9d18a582a..f51b75e6a 100755 --- a/contrib/package/meshwizard/files/usr/bin/meshwizard/helpers/setup_olsrd.sh +++ b/contrib/package/meshwizard/files/usr/bin/meshwizard/helpers/setup_olsrd.sh @@ -115,12 +115,16 @@ setup_watchdog() { } setup_jsoninfo() { - # Setup jsoninfo + # Setup jsoninfo + proto="$1" uci batch <<- EOF set $cfg.olsrd_jsoninfo=LoadPlugin set $cfg.olsrd_jsoninfo.library="olsrd_jsoninfo.so.0.0" EOF - uci_commitverbose "Setup olsr jsoninfo plugin" $cfg + if [ "$proto" = "6" ]; then + uci set $cfg.olsrd_jsoninfo.port='9091' + fi + uci_commitverbose "Setup olsr jsoninfo plugin" $cfg } @@ -140,6 +144,6 @@ for proto in $protocols; do setup_nameservice setup_dyngw_plain setup_watchdog - setup_jsoninfo + setup_jsoninfo $proto done -- 2.11.0