diff options
author | Daniil Baturin <daniil@baturin.org> | 2018-09-25 17:44:20 +0200 |
---|---|---|
committer | Daniil Baturin <daniil@baturin.org> | 2018-09-25 17:44:20 +0200 |
commit | 8d80d252e2c4e578d8019588d6d94499e778aa78 (patch) | |
tree | 16bd43c72cd586d7ffde6283480b90af87a073f3 /templates | |
parent | 6b8c6f431377d1e3c12beeccafedfbd64f61f6bf (diff) | |
parent | 123fd86d14a2c232d7fcfd262d8e9754295bab7a (diff) | |
download | vyatta-cfg-quagga-8d80d252e2c4e578d8019588d6d94499e778aa78.tar.gz vyatta-cfg-quagga-8d80d252e2c4e578d8019588d6d94499e778aa78.zip |
Merge branch 'current' of github.com:vyos/vyatta-cfg-quagga into current
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; + |