diff options
author | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2009-03-31 09:52:10 -0700 |
---|---|---|
committer | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2009-03-31 09:52:10 -0700 |
commit | 5670867cd76ecc432374755c877270f6ff8a4e33 (patch) | |
tree | 0883523f91e5adc7a215e18a7c7af3e97d8e58c9 /templates | |
parent | 5c5d43dabcc8ea068c2b58b796239748c49ed490 (diff) | |
download | vyatta-cfg-quagga-5670867cd76ecc432374755c877270f6ff8a4e33.tar.gz vyatta-cfg-quagga-5670867cd76ecc432374755c877270f6ff8a4e33.zip |
Fix template for soft-reconfiguration
Fixing vyatta-bgp checker found a bug in this template.
Template refered to wrong node in commit check.
It would do:
vyatta-bgp.pl --check-as --as <neighbor> --neighbor soft-reconfiguration
Diffstat (limited to 'templates')
-rw-r--r-- | templates/protocols/bgp/node.tag/neighbor/node.tag/soft-reconfiguration/inbound/node.def | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/protocols/bgp/node.tag/neighbor/node.tag/soft-reconfiguration/inbound/node.def b/templates/protocols/bgp/node.tag/neighbor/node.tag/soft-reconfiguration/inbound/node.def index 841f4e57..f52c6702 100644 --- a/templates/protocols/bgp/node.tag/neighbor/node.tag/soft-reconfiguration/inbound/node.def +++ b/templates/protocols/bgp/node.tag/neighbor/node.tag/soft-reconfiguration/inbound/node.def @@ -1,6 +1,6 @@ help: Set inbound soft reconfiguration for this neighbor commit:expression: exec "/opt/vyatta/sbin/vyatta-bgp.pl --check-as \ - --as $VAR(../../@) --neighbor $VAR(../@)" + --as $VAR(../../../@) --neighbor $VAR(../../@)" update: if [ -n "$VAR(../../remote-as/@)" ]; then peer="remote-as $VAR(../../remote-as/@)"; |