Cleanup of STDERR redirection; Update module versions

This commit is contained in:
Tom Eastep 2009-06-05 15:12:59 -07:00
parent c7210be5f0
commit be8b352ee7
6 changed files with 6 additions and 6 deletions

View File

@ -43,7 +43,7 @@ use Shorewall::Raw;
our @ISA = qw(Exporter);
our @EXPORT = qw( compiler EXPORT TIMESTAMP DEBUG );
our @EXPORT_OK = qw( $export );
our $VERSION = '4.3_7';
our $VERSION = '4.3_12';
our $export;

View File

@ -126,7 +126,7 @@ our %EXPORT_TAGS = ( internal => [ qw( create_temp_object
Exporter::export_ok_tags('internal');
our $VERSION = '4.3_7';
our $VERSION = '4.3_12';
#
# describe the current command, it's present progressive, and it's completion.

View File

@ -41,7 +41,7 @@ our @EXPORT = qw(
setup_forwarding
);
our @EXPORT_OK = qw( );
our $VERSION = '4.3_7';
our $VERSION = '4.3_12';
#
# ARP Filtering

View File

@ -40,7 +40,7 @@ if [ -n "$STARTUP_LOG" ]; then
#
# We're not tracing or debugging -- tee STDOUT to the log
#
exec 2>| tee $STARTUP_LOG
exec 2>| tee -a $STARTUP_LOG
fi
fi

View File

@ -37,7 +37,7 @@ if [ -n "$STARTUP_LOG" ]; then
#
# We're not tracing or debugging -- tee STDOUT to the log
#
exec 2>| tee $STARTUP_LOG
exec 2>| tee -a $STARTUP_LOG
fi
fi

View File

@ -13,7 +13,7 @@
SRWL=/sbin/shorewall
SRWL_OPTS=""
SRWL_OPTS="-tvv"
WAIT_FOR_IFUP=/usr/share/shorewall/wait4ifup
# Note, set INITLOG to /dev/null if you want to
# use Shorewall's STARTUP_LOG feature.