bugfix: correct unmatched quote error

This commit is contained in:
Darryl Quinn 2015-04-29 21:33:36 -07:00
parent defd944fc1
commit 8aa7b84712
1 changed files with 5 additions and 4 deletions

View File

@ -125,11 +125,12 @@ sub del_olsrd_interface() {
# Add network interfaces tun50 thru tun69 - called on install # Add network interfaces tun50 thru tun69 - called on install
########################## ##########################
sub add_network_interfaces() { sub add_network_interfaces() {
for ($tunnum = 50; $tunnum <= 69; $tunnum++)
for (my $tunnum=50; $tunnum<=69; $tunnum++)
{ {
system "uci set network.vpn${tunnum}=interface"; system "uci set network.tun${tunnum}=interface";
system "uci set network.vpn${tunnum}.ifname='tun${tunnum}"; system "uci set network.tun${tunnum}.ifname='tun${tunnum}'";
system "uci set network.vpn${tunnum}.proto='none'"; system "uci set network.tun${tunnum}.proto='none'";
} }
system "uci commit network"; system "uci commit network";
} }