diff options
Diffstat (limited to 'templates/protocols/ospf/redistribute/bgp/node.def')
-rw-r--r-- | templates/protocols/ospf/redistribute/bgp/node.def | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/protocols/ospf/redistribute/bgp/node.def b/templates/protocols/ospf/redistribute/bgp/node.def index a997d42b..6e1eb3b4 100644 --- a/templates/protocols/ospf/redistribute/bgp/node.def +++ b/templates/protocols/ospf/redistribute/bgp/node.def @@ -9,12 +9,12 @@ end: ${vyatta_sbindir}/vyatta-vtysh.pl -c "configure terminal" \ if [ -n "$VAR(./metric/@)" ]; then COND="metric $VAR(./metric/@)"; fi; - if [ -n "$VAR(./route-map/@)" ]; then - COND="$COND route-map $VAR(./route-map/@)"; - fi; if [ -n "$VAR(./metric-type/@)" ]; then COND="$COND metric-type $VAR(./metric-type/@)"; fi; + if [ -n "$VAR(./route-map/@)" ]; then + COND="$COND route-map $VAR(./route-map/@)"; + fi; ${vyatta_sbindir}/vyatta-vtysh.pl -c "configure terminal" \ -c "router ospf" \ -c "redistribute bgp $COND"; |