diff options
author | rbalocca <rbalocca@vyatta.com> | 2008-03-29 13:22:49 -0700 |
---|---|---|
committer | rbalocca <rbalocca@vyatta.com> | 2008-03-29 13:22:49 -0700 |
commit | 90634a97823497667468e2faba8dac05b8aa3b2b (patch) | |
tree | f0fc1b050ba68d88ccce466f4bf1c8201502354c /scripts | |
parent | 918fd7e1d19554575963fd02a3c80d0e5b49c833 (diff) | |
parent | 6f4c8265f09ac6d6efd113598bbd65454d7a4865 (diff) | |
download | vyatta-cfg-quagga-90634a97823497667468e2faba8dac05b8aa3b2b.tar.gz vyatta-cfg-quagga-90634a97823497667468e2faba8dac05b8aa3b2b.zip |
Merge branch 'glendale' into hollywood
Diffstat (limited to 'scripts')
-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; } } |