summaryrefslogtreecommitdiff
path: root/templates/protocols/ospf
diff options
context:
space:
mode:
authorStig Thormodsrud <stig@vyatta.com>2008-04-08 12:14:02 -0700
committerStig Thormodsrud <stig@vyatta.com>2008-04-08 12:14:02 -0700
commite742bfc51801378309d96aaae6366c2602a571fe (patch)
tree244cde24d4f9d864cae3cfbcdb064c24df335d1c /templates/protocols/ospf
parent5565a0741a4f74a5c7d4210e877a6b9b61eefaad (diff)
downloadvyatta-cfg-quagga-e742bfc51801378309d96aaae6366c2602a571fe.tar.gz
vyatta-cfg-quagga-e742bfc51801378309d96aaae6366c2602a571fe.zip
Fix 3131: "delete protocols ospf parameters abr-type" does not remove " ospf abr-type standard"
from the routing engine
Diffstat (limited to 'templates/protocols/ospf')
-rw-r--r--templates/protocols/ospf/parameters/abr-type/node.def20
1 files changed, 10 insertions, 10 deletions
diff --git a/templates/protocols/ospf/parameters/abr-type/node.def b/templates/protocols/ospf/parameters/abr-type/node.def
index b81d798e..3e63c885 100644
--- a/templates/protocols/ospf/parameters/abr-type/node.def
+++ b/templates/protocols/ospf/parameters/abr-type/node.def
@@ -2,14 +2,14 @@ type: txt
help: Set OSPF ABR type
default: "cisco"
syntax:expression: $VAR(@) in "cisco", "ibm", "shortcut", "standard"; "Must be (cisco, ibm, shortcut, standard)"
-update:expression: "${vyatta_sbindir}/vyatta-vtysh.pl -c \"configure terminal\" \
- -c \"router ospf\" \
- -c \"ospf abr-type $VAR(@)\"; "
-delete:expression: "${vyatta_sbindir}/vyatta-vtysh.pl -c \"configure terminal\" \
- -c \"router ospf\" \
- -c \"no ospf abr-type $VAR(@)\"; "
+update: ${vyatta_sbindir}/vyatta-vtysh.pl -c "configure terminal" \
+ -c "router ospf" \
+ -c "ospf abr-type $VAR(@)";
+delete: ${vyatta_sbindir}/vyatta-vtysh.pl -c "configure terminal" \
+ -c "router ospf" \
+ -c "ospf abr-type cisco";
comp_help: possible completions:
- cisco Set cisco ABR type (default)
- ibm Set ibm ABR type
- shortcut Set shortcut ABR type
- standard Set standard ABR type
+ cisco Set cisco ABR type (default)
+ ibm Set ibm ABR type
+ shortcut Set shortcut ABR type
+ standard Set standard ABR type