diff options
Diffstat (limited to 'scripts')
| -rwxr-xr-x | scripts/vyatta-tunnel-cleanup | 3 | 
1 files changed, 3 insertions, 0 deletions
| diff --git a/scripts/vyatta-tunnel-cleanup b/scripts/vyatta-tunnel-cleanup index 979fb7bd..af73bc04 100755 --- a/scripts/vyatta-tunnel-cleanup +++ b/scripts/vyatta-tunnel-cleanup @@ -26,6 +26,9 @@ my %tunnel;  foreach my $tun ( $config->listEffectiveNodes() ) {      my $mode = $config->returnEffectiveValue("$tun encapsulation");      next if ($interface eq $tun); # don't count the one being deleted +    if ($mode eq "gre-multipoint") { +       $mode = "gre"; +    }      $tunnel{$mode} = 1;  } | 
