diff options
author | Robert Bays <rbays@moresby.vyatta.com> | 2008-03-25 17:19:29 -0700 |
---|---|---|
committer | Robert Bays <rbays@moresby.vyatta.com> | 2008-03-25 17:19:29 -0700 |
commit | f9989ab77bffc9fb336eb6c00677e6251b1bf618 (patch) | |
tree | e947a9d0ccf7de15adcd36caa84c3887f2ad4c4e /scripts/bgp | |
parent | 43e606dd1afc29b551ddfb53f4d7a388121b3fbe (diff) | |
download | vyatta-cfg-quagga-f9989ab77bffc9fb336eb6c00677e6251b1bf618.tar.gz vyatta-cfg-quagga-f9989ab77bffc9fb336eb6c00677e6251b1bf618.zip |
update help strings in BGP
add comp_help strings to BGP
remove enforce-capability parameter since in quagga it's an alias
remove interface parameter since it's ipv6 related
remove password parameter as the md5 code isn't in the current release
fixed a couple of parameter relationship bugs
Diffstat (limited to 'scripts/bgp')
-rwxr-xr-x | scripts/bgp/vyatta-bgp.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/bgp/vyatta-bgp.pl b/scripts/bgp/vyatta-bgp.pl index d0f9c94c..319f980b 100755 --- a/scripts/bgp/vyatta-bgp.pl +++ b/scripts/bgp/vyatta-bgp.pl @@ -108,12 +108,12 @@ sub check_as() { } if (! defined $peergroup) { - print "You must define a remote-as or peer-group for neighbor $neighbor before commiting\n"; + print "protocols bgp $as neighbor $neighbor: you must define a remote-as or peer-group\n"; exit 1; } if (! defined $peergroupas) { - print "You must define a remote-as in neighbor $neighbor or peer-group $peergroup before commiting\n"; + print "protocols bgp $as neighbor $neighbor: you must define a remote-as in this neighbor or in peer-group $peergroup\n"; exit 1; } } |