diff options
author | Viacheslav <v.gletenko@vyos.io> | 2021-09-27 10:59:51 +0000 |
---|---|---|
committer | Viacheslav <v.gletenko@vyos.io> | 2021-09-27 10:59:51 +0000 |
commit | 686131c2c99278fa9bee62de65987ff03c0677e0 (patch) | |
tree | 91b55ec45114e21fec9f43ac771320794836de6f | |
parent | 7ba61623a569bb0f1b0b5eb85f4cdae99ec6c7f9 (diff) | |
download | vyatta-cfg-quagga-686131c2c99278fa9bee62de65987ff03c0677e0.tar.gz vyatta-cfg-quagga-686131c2c99278fa9bee62de65987ff03c0677e0.zip |
ospfv3: T3858: Fix for delete correct v6 router-id
-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 4bf54837..eef12b15 100644 --- a/templates/protocols/ospfv3/node.def +++ b/templates/protocols/ospfv3/node.def @@ -12,6 +12,6 @@ begin: if [ "$COMMIT_ACTION" != DELETE ]; then sudo vtysh --writeconfig --noerror 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 |