contrib/meshwizard: Fix variable for sharenet so policyrouting is setup correctly

This commit is contained in:
Manuel Munz 2011-11-02 13:37:23 +00:00
parent 16c26a5154
commit 89fb9f9084

View file

@ -70,7 +70,7 @@ fi
# Setup policyrouting if internet sharing is disabled and wan is not used for olsrd
# Always disable it first to make sure its disabled when the user decied to share his internet
uci set freifunk-policyrouting.pr.enable=0
if [ ! "$sharenet" == 1 ] && [ ! "$(uci -q get meshwizard.netconfig.wan_proto)" == "olsr" ]; then
if [ ! "$general_sharenet" == 1 ] && [ ! "$(uci -q get meshwizard.netconfig.wan_proto)" == "olsr" ]; then
$dir/helpers/setup_policyrouting.sh
fi