diff options
author | Viacheslav <v.gletenko@vyos.io> | 2021-09-27 10:59:51 +0000 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2021-09-27 20:56:29 +0200 |
commit | 92dcd50d35e0eb3490139009bfb33a32aa147a9d (patch) | |
tree | e557154e29edfe6ddf8fe8bcf097a75bc2f5f87c | |
parent | 6d1a09e92fd77806304f91499e733b6e7ca2dce5 (diff) | |
download | vyatta-cfg-quagga-92dcd50d35e0eb3490139009bfb33a32aa147a9d.tar.gz vyatta-cfg-quagga-92dcd50d35e0eb3490139009bfb33a32aa147a9d.zip |
ospfv3: T3858: Fix for delete correct v6 router-id
(cherry picked from commit 686131c2c99278fa9bee62de65987ff03c0677e0)
-rw-r--r-- | templates/protocols/ospfv3/node.def | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/protocols/ospfv3/node.def b/templates/protocols/ospfv3/node.def index ffcf8dbc..fcb8a822 100644 --- a/templates/protocols/ospfv3/node.def +++ b/templates/protocols/ospfv3/node.def @@ -11,6 +11,6 @@ begin: if [ "$COMMIT_ACTION" != DELETE ]; then vtysh -d ospf6d -c 'sh run' > /opt/vyatta/etc/quagga/ospf6d.conf fi end: if [ "$COMMIT_ACTION" == DELETE ]; then - vtysh -c "configure terminal" -c "router ospf6" -c "no router-id" + vtysh -c "configure terminal" -c "router ospf6" -c "no ospf6 router-id" vtysh -c "configure terminal" -c "no router ospf6" fi |