This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "IPFire 2.x development tree".
The branch, master has been updated via d92a7932a7e81596a74006c81e4670d93527c8fd (commit) from bfdd4688c944201ea35aede4148c70691d424ce6 (commit)
Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below.
- Log ----------------------------------------------------------------- commit d92a7932a7e81596a74006c81e4670d93527c8fd Author: Michael Tremer michael.tremer@ipfire.org Date: Wed Jun 23 11:54:32 2010 +0200
Add space to logging entries by outgoing firewall.
This fixes bug #671.
-----------------------------------------------------------------------
Summary of changes: config/outgoingfw/outgoingfw.pl | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-)
Difference in files: diff --git a/config/outgoingfw/outgoingfw.pl b/config/outgoingfw/outgoingfw.pl index 58c97bc..1bdd612 100644 --- a/config/outgoingfw/outgoingfw.pl +++ b/config/outgoingfw/outgoingfw.pl @@ -207,9 +207,9 @@ foreach $configentry (sort @configs)
if ($configline[9] eq "aktiv") { if ($DEBUG) { - print "$CMD -m limit --limit 10/minute -j LOG --log-prefix 'DROP_OUTGOINGFW'\n"; + print "$CMD -m limit --limit 10/minute -j LOG --log-prefix 'DROP_OUTGOINGFW '\n"; } else { - system("$CMD -m limit --limit 10/minute -j LOG --log-prefix 'DROP_OUTGOINGFW'"); + system("$CMD -m limit --limit 10/minute -j LOG --log-prefix 'DROP_OUTGOINGFW '"); } }
@@ -255,7 +255,7 @@ if ($P2PSTRING) {
if ( $outfwsettings{'POLICY'} eq 'MODE1' ) { if ( $outfwsettings{'MODE1LOG'} eq 'on' ) { - $CMD = "/sbin/iptables -A OUTGOINGFW -o $netsettings{'RED_DEV'} -m limit --limit 10/minute -j LOG --log-prefix 'DROP_OUTGOINGFW'"; + $CMD = "/sbin/iptables -A OUTGOINGFW -o $netsettings{'RED_DEV'} -m limit --limit 10/minute -j LOG --log-prefix 'DROP_OUTGOINGFW '"; if ($DEBUG) { print "$CMD\n"; } else { @@ -269,4 +269,4 @@ if ( $outfwsettings{'POLICY'} eq 'MODE1' ) { } else { system("$CMD"); } -} \ No newline at end of file +}
hooks/post-receive -- IPFire 2.x development tree