diff options
author | James Davidson <james.davidson@vyatta.com> | 2012-11-24 11:16:11 -0800 |
---|---|---|
committer | James Davidson <james.davidson@vyatta.com> | 2012-11-24 11:16:11 -0800 |
commit | 4b94c89a11d0f76787f958d4533b3f4a38ce29fc (patch) | |
tree | bdf19087752e6c7819c221f8061d78f3a16d9ec3 | |
parent | b50ceb3e777e63b31a11552c40aafca464d0d21a (diff) | |
download | vyatta-cfg-quagga-4b94c89a11d0f76787f958d4533b3f4a38ce29fc.tar.gz vyatta-cfg-quagga-4b94c89a11d0f76787f958d4533b3f4a38ce29fc.zip |
Bugfix 7428: Update warning message text.
-rwxr-xr-x | scripts/vyatta-gateway-static_route-check.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/vyatta-gateway-static_route-check.pl b/scripts/vyatta-gateway-static_route-check.pl index ae64e8f7..4221b5fc 100755 --- a/scripts/vyatta-gateway-static_route-check.pl +++ b/scripts/vyatta-gateway-static_route-check.pl @@ -68,8 +68,8 @@ if ( ( $#ARGV == 1 ) && ( $ARGV[0] eq '0.0.0.0/0' ) ) { my $haveStaticDefaultRoute = findStaticDefaultRoute($config); if ($haveGatewayAddress && $haveStaticDefaultRoute) { print "Warning:\n"; - print "Both a 'system gateway-address' and a protocols static default route\n"; - print "(0.0.0.0/0) are configured. This configuration is not recommended.\n"; + print "Both 'system gateway-address' and 'protocols static route 0.0.0.0/0'\n"; + print "are configured. This configuration is not recommended.\n"; } } else { # check when deleting gateway-address |