diff options
author | Stig Thormodsrud <stig@io.vyatta.com> | 2009-02-20 16:32:08 -0800 |
---|---|---|
committer | Stig Thormodsrud <stig@io.vyatta.com> | 2009-02-20 16:32:08 -0800 |
commit | 559f526813bc388b23aa421d031a21198cf24fe1 (patch) | |
tree | 3b12407fd0808917bcb769a22a290e33528d4044 /templates/protocols/bgp | |
parent | 94f29c51c3f71f022071321970b11580d0b1f699 (diff) | |
parent | 5a5d22dcff759797aee919ebaa1207a595772626 (diff) | |
download | vyatta-cfg-quagga-559f526813bc388b23aa421d031a21198cf24fe1.tar.gz vyatta-cfg-quagga-559f526813bc388b23aa421d031a21198cf24fe1.zip |
Merge branch 'jenner' of http://git.vyatta.com/vyatta-cfg-quagga into jenner
Diffstat (limited to 'templates/protocols/bgp')
-rw-r--r-- | templates/protocols/bgp/disable/node.def | 12 | ||||
-rw-r--r-- | templates/protocols/bgp/node.def | 2 |
2 files changed, 1 insertions, 13 deletions
diff --git a/templates/protocols/bgp/disable/node.def b/templates/protocols/bgp/disable/node.def deleted file mode 100644 index 2795453f..00000000 --- a/templates/protocols/bgp/disable/node.def +++ /dev/null @@ -1,12 +0,0 @@ -type: bool -help: Disable BGP daemon -default: false -update: if [ $VAR(@) == "true" ]; - then sudo ${vyatta_sbindir}/vyatta-protocol stop bgpd - else sudo ${vyatta_sbindir}/vyatta-protocol start bgpd - fi -possible completions: - true Stop BGP daemon - false Start BGP daemon - -allowed: echo "true false" diff --git a/templates/protocols/bgp/node.def b/templates/protocols/bgp/node.def index 803362db..91d7261b 100644 --- a/templates/protocols/bgp/node.def +++ b/templates/protocols/bgp/node.def @@ -4,7 +4,7 @@ help: Configure Border Gateway Protocol (BGP) parameters comp_help: \1 <1-4294967294>\tAS number syntax:expression: $VAR(@) >= 1 && $VAR(@) <= 4294967294 ; \ "AS number must be between 1 and 4294967294" -begin: sudo /opt/vyatta/sbin/quagga-manager start bgpd +create: sudo /opt/vyatta/sbin/quagga-manager start bgpd update: vyatta-vtysh -c "configure terminal" -c "router bgp $VAR(@)" # we need to set default parameters in BGP here since we can't do it in # startup scripts as we don't know the AS number at that point |