summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBob Gilligan <gilligan@vyatta.com>2009-07-13 16:18:07 -0700
committerBob Gilligan <gilligan@vyatta.com>2009-07-13 16:18:07 -0700
commit2fa2ed024894255f640a63b9bb4bcd7f93b5e694 (patch)
tree7bd57900739e6078c7c83959627e684d052a2aa4
parentf667d3eef54a8bb906b479f201eeac546e5e9cd2 (diff)
downloadvyatta-cfg-quagga-2fa2ed024894255f640a63b9bb4bcd7f93b5e694.tar.gz
vyatta-cfg-quagga-2fa2ed024894255f640a63b9bb4bcd7f93b5e694.zip
Bugfix 4708: Use "create" field instead of "update" for non-leaf multi-nodes.
-rw-r--r--interface-templates/ip/ospf/authentication/md5/node.def17
1 files changed, 13 insertions, 4 deletions
diff --git a/interface-templates/ip/ospf/authentication/md5/node.def b/interface-templates/ip/ospf/authentication/md5/node.def
index f861944c..1fcf3e64 100644
--- a/interface-templates/ip/ospf/authentication/md5/node.def
+++ b/interface-templates/ip/ospf/authentication/md5/node.def
@@ -1,5 +1,14 @@
help: Set MD5 key id
-update:vyatta-vtysh -c "configure terminal" -c "interface $IFNAME" \
- -c "no ip ospf authentication" -c "ip ospf authentication message-digest"
-delete:vyatta-vtysh -c "configure terminal" -c "interface $IFNAME" \
- -c "no ip ospf authentication"
+
+create:
+ vyatta-vtysh \
+ -c "configure terminal" \
+ -c "interface $IFNAME" \
+ -c "no ip ospf authentication" \
+ -c "ip ospf authentication message-digest"
+
+delete:
+ vyatta-vtysh \
+ -c "configure terminal" \
+ -c "interface $IFNAME" \
+ -c "no ip ospf authentication"