diff options
author | Stig Thormodsrud <stig@vyatta.com> | 2010-11-18 14:48:52 -0800 |
---|---|---|
committer | Stig Thormodsrud <stig@vyatta.com> | 2010-11-18 14:48:52 -0800 |
commit | fa8b079a5e0b370bee12ba9bde63eef925ef4043 (patch) | |
tree | 67a73fe02c26e0ecc512a3e36d0f68ed896d69a9 | |
parent | d1bc0854513d794245bb53f4aa785abd4d70341f (diff) | |
download | vyatta-cfg-quagga-fa8b079a5e0b370bee12ba9bde63eef925ef4043.tar.gz vyatta-cfg-quagga-fa8b079a5e0b370bee12ba9bde63eef925ef4043.zip |
Fix "no interface". Need space before ';'
-rwxr-xr-x | scripts/ospfv3/vyatta-ospfv3.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/ospfv3/vyatta-ospfv3.pl b/scripts/ospfv3/vyatta-ospfv3.pl index c359d348..d89567cc 100755 --- a/scripts/ospfv3/vyatta-ospfv3.pl +++ b/scripts/ospfv3/vyatta-ospfv3.pl @@ -15,7 +15,7 @@ # General Public License for more details. # # This code was originally developed by Vyatta, Inc. -# Portions created by Vyatta are Copyright (C) 2006, 2007, 2008 Vyatta, Inc. +# Portions created by Vyatta are Copyright (C) 2010 Vyatta, Inc. # All Rights Reserved. # **** End License **** @@ -72,7 +72,7 @@ my %quagga_commands = ( del => 'router ospf6 ; no area #4 range #6 not-advertise' }, 'protocols ospfv3 area var interface' => { - set => 'router ospf6 ; no interface #6 area #4; interface #6 area #4', + set => 'router ospf6 ; no interface #6 area #4 ; interface #6 area #4', del => 'router ospf6 ; no interface #6 area #4', noerr => 'set' }, |