diff options
author | Bob Gilligan <gilligan@vyatta.com> | 2009-07-13 16:18:07 -0700 |
---|---|---|
committer | Bob Gilligan <gilligan@vyatta.com> | 2009-07-13 16:22:55 -0700 |
commit | 5bb36c49a20e15032fb43da99c694dece32cba05 (patch) | |
tree | b593b67a250c84af118e1f7c139f61ecea54c95f /interface-templates | |
parent | 58944682f91de9e102ec5f36ffd0239ce19fe108 (diff) | |
download | vyatta-cfg-quagga-5bb36c49a20e15032fb43da99c694dece32cba05.tar.gz vyatta-cfg-quagga-5bb36c49a20e15032fb43da99c694dece32cba05.zip |
Bugfix 4708: Use "create" field instead of "update" for non-leaf multi-nodes.
Diffstat (limited to 'interface-templates')
-rw-r--r-- | interface-templates/ip/ospf/authentication/md5/node.def | 17 |
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" |