summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Bays <rbays@moresby.vyatta.com>2008-03-17 18:27:44 -0700
committerRobert Bays <rbays@moresby.vyatta.com>2008-03-17 18:27:44 -0700
commit298958d7617b8fea64e1fe658458e631c4f49f48 (patch)
tree3593d19723702bcb1e967338406d9e0c3bf30184
parentf96a89bf39529fef20a7ad2d9b83cf6d99d43750 (diff)
downloadvyatta-cfg-quagga-298958d7617b8fea64e1fe658458e631c4f49f48.tar.gz
vyatta-cfg-quagga-298958d7617b8fea64e1fe658458e631c4f49f48.zip
update help for access-lists
-rwxr-xr-xscripts/policy/vyatta-policy.pl14
1 files changed, 7 insertions, 7 deletions
diff --git a/scripts/policy/vyatta-policy.pl b/scripts/policy/vyatta-policy.pl
index e840271e..72427b51 100755
--- a/scripts/policy/vyatta-policy.pl
+++ b/scripts/policy/vyatta-policy.pl
@@ -64,7 +64,7 @@ sub update_community_list() {
# set the action
$action = $config->returnValue("$rule action");
if (! defined $action) {
- print "You must specify an action for as-path-list $list rule $rule\n";
+ print "policy community-list $list rule $rule: You must specify an action\n";
exit 1;
}
@@ -73,7 +73,7 @@ sub update_community_list() {
$regex = $config->returnValue("$rule regex");
}
else {
- print "You must specify a regex for community-list $list rule $rule\n";
+ print "policy community-list $list rule $rule: You must specify a regex\n";
exit 1;
}
@@ -114,7 +114,7 @@ sub update_as_path() {
# set the action
$action = $config->returnValue("$rule action");
if (! defined $action) {
- print "You must specify an action for as-path-list $list rule $rule\n";
+ print "policy as-path-list $list rule $rule: You must specify an action\n";
exit 1;
}
@@ -123,7 +123,7 @@ sub update_as_path() {
$regex = $config->returnValue("$rule regex");
}
else {
- print "You must specify a regex for as-path-list $list rule $rule\n";
+ print "policy as-path-list $list rule $rule: You must specify a regex\n";
exit 1;
}
@@ -164,7 +164,7 @@ sub update_access_list() {
# set the action
$action = $config->returnValue("$rule action");
if (! defined $action) {
- print "You must specify an action for access-list $list rule $rule\n";
+ print "policy access-list $list rule $rule: You must specify an action\n";
exit 1;
}
@@ -181,7 +181,7 @@ sub update_access_list() {
else {
if ($config->exists("$rule source any")) { $src = "any"; }
else {
- print "error in source section of access-list $list rule $rule\n";
+ print "policy access-list $list rule $rule source: incorrect source filter\n";
exit 1;
}
}
@@ -201,7 +201,7 @@ sub update_access_list() {
else {
if ($config->exists("$rule destination any")) { $dst = "any"; }
else {
- print "error in destination section of access-list $list rule $rule\n";
+ print "policy access-list $list rule $rule destination: incorrect destination filter\n";
exit 1;
}
}