diff options
author | Bob Gilligan <gilligan@vyatta.com> | 2009-07-15 11:47:24 -0700 |
---|---|---|
committer | Bob Gilligan <gilligan@vyatta.com> | 2009-07-15 11:50:56 -0700 |
commit | ef9afcfa51cfb72c75e26e994fe58f4690e7ab87 (patch) | |
tree | b27ef077ee261b82206e43604f598397e48a9803 | |
parent | 5762cf991dfae9fd9e0a3f524c5ee2ffc958562e (diff) | |
download | vyatta-cfg-quagga-ef9afcfa51cfb72c75e26e994fe58f4690e7ab87.tar.gz vyatta-cfg-quagga-ef9afcfa51cfb72c75e26e994fe58f4690e7ab87.zip |
Bugfix 4708: Change update action in non-leaf valueless node to create
An "update" action in a non-leaf valueless node is only called when the
node is created for the first time. So the "create" action should be
used instead of "update".
-rw-r--r-- | templates/protocols/ospf/area/node.tag/area-type/stub/no-summary/node.def | 16 | ||||
-rw-r--r-- | templates/protocols/ospf/area/node.tag/area-type/stub/node.def | 19 |
2 files changed, 23 insertions, 12 deletions
diff --git a/templates/protocols/ospf/area/node.tag/area-type/stub/no-summary/node.def b/templates/protocols/ospf/area/node.tag/area-type/stub/no-summary/node.def index dfcbfdf7..da351ee5 100644 --- a/templates/protocols/ospf/area/node.tag/area-type/stub/no-summary/node.def +++ b/templates/protocols/ospf/area/node.tag/area-type/stub/no-summary/node.def @@ -1,7 +1,11 @@ help: Set to not inject inter-area routes into stub -create:expression: "vyatta-vtysh -c \"configure terminal\" \ - -c \"router ospf\" \ - -c \"area $VAR(../../../@) stub no-summary \"; " -delete:expression: "vyatta-vtysh -c \"configure terminal\" \ - -c \"router ospf\" \ - -c \"no area $VAR(../../../@) stub no-summary \"; " + +create: + vyatta-vtysh -c "configure terminal" \ + -c "router ospf" \ + -c "area $VAR(../../../@) stub no-summary " + +delete: + vyatta-vtysh -c "configure terminal" \ + -c "router ospf" \ + -c "no area $VAR(../../../@) stub no-summary " diff --git a/templates/protocols/ospf/area/node.tag/area-type/stub/node.def b/templates/protocols/ospf/area/node.tag/area-type/stub/node.def index b9d2066c..ecdc091a 100644 --- a/templates/protocols/ospf/area/node.tag/area-type/stub/node.def +++ b/templates/protocols/ospf/area/node.tag/area-type/stub/node.def @@ -1,10 +1,17 @@ help: Set stub OSPF area + syntax:expression: ! $VAR(../../@) in "0", "0.0.0.0"; "Backbone can't be stub" + syntax:expression: $VAR(../nssa/) == "" ; "Must delete nssa area type first" + syntax:expression: $VAR(../normal/) == "" ; "Must delete normal area type first" -update:expression: "vyatta-vtysh -c \"configure terminal\" \ - -c \"router ospf\" \ - -c \"area $VAR(../../@) stub\"; " -delete:expression: "vyatta-vtysh -c \"configure terminal\" \ - -c \"router ospf\" \ - -c \"no area $VAR(../../@) stub\"; " + +create: + vyatta-vtysh -c "configure terminal" \ + -c "router ospf" \ + -c "area $VAR(../../@) stub" + +delete: + vyatta-vtysh -c "configure terminal" \ + -c "router ospf" \ + -c "no area $VAR(../../@) stub" |