diff options
author | Christian Poessinger <christian@poessinger.com> | 2018-09-21 13:25:02 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-21 13:25:02 +0200 |
commit | 123fd86d14a2c232d7fcfd262d8e9754295bab7a (patch) | |
tree | b54096e2704f28ba32cce612f294dad8f47d45c2 /templates | |
parent | 70215a16a8c535f6868c42e3caf6d5849b36ed44 (diff) | |
parent | b59a39062b361801571094d8dc4e5fa20a986c44 (diff) | |
download | vyatta-cfg-quagga-123fd86d14a2c232d7fcfd262d8e9754295bab7a.tar.gz vyatta-cfg-quagga-123fd86d14a2c232d7fcfd262d8e9754295bab7a.zip |
Merge pull request #21 from omamenko/current
T856 OSPF area-type NSSA
Diffstat (limited to 'templates')
-rw-r--r-- | templates/protocols/ospf/area/node.tag/area-type/nssa/node.def | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/templates/protocols/ospf/area/node.tag/area-type/nssa/node.def b/templates/protocols/ospf/area/node.tag/area-type/nssa/node.def index 9b886467..bed9a704 100644 --- a/templates/protocols/ospf/area/node.tag/area-type/nssa/node.def +++ b/templates/protocols/ospf/area/node.tag/area-type/nssa/node.def @@ -20,8 +20,9 @@ end: if [ -f "/tmp/ospf-area-nssa.$PPID" ]; then ${vyatta_sbindir}/vyatta-check-typeless-node.pl \ "protocols ospf area $VAR(../../@) area-type nssa no-summary"; if [ $? -eq 0 ] ; then - PARM="$PARM no-summary"; + PARM2="no-summary"; fi; vtysh -c "configure terminal" \ - -c "router ospf" -c "area $VAR(../../@) nssa $PARM"; + -c "router ospf" -c "area $VAR(../../@) nssa $PARM2" -c "area $VAR(../../@) nssa $PARM"; \ fi; + |