summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/vyatta-update-dst-nat.pl4
-rwxr-xr-xscripts/vyatta-update-src-nat.pl4
2 files changed, 4 insertions, 4 deletions
diff --git a/scripts/vyatta-update-dst-nat.pl b/scripts/vyatta-update-dst-nat.pl
index 7d81198..4a2fb9a 100755
--- a/scripts/vyatta-update-dst-nat.pl
+++ b/scripts/vyatta-update-dst-nat.pl
@@ -103,8 +103,8 @@ for $rule (@rule_keys) {
my ($err, @rule_strs) = $nrule->rule_str();
if (defined $err) {
# rule check failed => return error
- print OUT "NAT configuration error: $err\n";
- print STDERR "NAT configuration error: $err\n";
+ print OUT "Destination NAT configuration error in rule $rule: $err\n";
+ print STDERR "Destination NAT configuration error in rule $rule: $err\n";
exit 5;
}
diff --git a/scripts/vyatta-update-src-nat.pl b/scripts/vyatta-update-src-nat.pl
index 022febb..af77e22 100755
--- a/scripts/vyatta-update-src-nat.pl
+++ b/scripts/vyatta-update-src-nat.pl
@@ -103,8 +103,8 @@ for $rule (@rule_keys) {
my ($err, @rule_strs) = $nrule->rule_str();
if (defined $err) {
# rule check failed => return error
- print OUT "NAT configuration error: $err\n";
- print STDERR "NAT configuration error: $err\n";
+ print OUT "Source NAT configuration error in rule $rule: $err\n";
+ print STDERR "Source NAT configuration error in rule $rule: $err\n";
exit 5;
}