forked from extern/shorewall_code
Fix params parsing on older distros
This commit is contained in:
parent
5458d9367f
commit
2e35ad0a1b
@ -2888,16 +2888,6 @@ sub unsupported_yes_no_warning( $ ) {
|
|||||||
#
|
#
|
||||||
# Process the params file
|
# Process the params file
|
||||||
#
|
#
|
||||||
sub get_params_bug( \@$ ) {
|
|
||||||
my ( $params, $element ) = @_;
|
|
||||||
|
|
||||||
warning_message "Bug in get_params()";
|
|
||||||
print STDERR "Params\n";
|
|
||||||
print STDERR $_ for @$params;
|
|
||||||
print STDERR "\nElement in error:\n";
|
|
||||||
print STDERR "$element\n";
|
|
||||||
}
|
|
||||||
|
|
||||||
sub get_params() {
|
sub get_params() {
|
||||||
my $fn = find_file 'params';
|
my $fn = find_file 'params';
|
||||||
|
|
||||||
@ -2912,6 +2902,11 @@ sub get_params() {
|
|||||||
|
|
||||||
fatal_error "Processing of $fn failed" if $?;
|
fatal_error "Processing of $fn failed" if $?;
|
||||||
|
|
||||||
|
if ( $debug ) {
|
||||||
|
print "Params:\n";
|
||||||
|
print $_ for @params;
|
||||||
|
}
|
||||||
|
|
||||||
my ( $variable , $bug );
|
my ( $variable , $bug );
|
||||||
|
|
||||||
if ( $params[0] =~ /^declare/ ) {
|
if ( $params[0] =~ /^declare/ ) {
|
||||||
@ -2932,10 +2927,34 @@ sub get_params() {
|
|||||||
$params{$1} = '';
|
$params{$1} = '';
|
||||||
} else {
|
} else {
|
||||||
if ($variable) {
|
if ($variable) {
|
||||||
s/'$//;
|
s/"$//;
|
||||||
$params{$variable} .= $_;
|
$params{$variable} .= $_;
|
||||||
} else {
|
} else {
|
||||||
get_params_bug( @params, $_ ) unless $bug++;
|
warning_message "Param line ($_) ignored" unless $bug++;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} elsif ( $params[0] =~ /^export (.*?)="/ ) {
|
||||||
|
#
|
||||||
|
# getparams interpreted by older (e.g., RHEL 5) Bash
|
||||||
|
#
|
||||||
|
# - Variable names preceded by 'export '
|
||||||
|
# - Variable values are delimited by double quotes
|
||||||
|
# - Embedded single quotes are escaped with '\'
|
||||||
|
#
|
||||||
|
for ( @params ) {
|
||||||
|
if ( /^export (.*?)="(.*[^\\])"$/ ) {
|
||||||
|
$params{$1} = $2 unless $1 eq '_';
|
||||||
|
} elsif ( /^export (.*?)="(.*)$/ ) {
|
||||||
|
$params{$variable=$1}="${2}\n";
|
||||||
|
} elsif ( /^export (.*)\s+$/ || /^export (.*)=""$/ ) {
|
||||||
|
$params{$1} = '';
|
||||||
|
} else {
|
||||||
|
if ($variable) {
|
||||||
|
s/"$//;
|
||||||
|
$params{$variable} .= $_;
|
||||||
|
} else {
|
||||||
|
warning_message "Param line ($_) ignored" unless $bug++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -2959,7 +2978,7 @@ sub get_params() {
|
|||||||
s/'$//;
|
s/'$//;
|
||||||
$params{$variable} .= $_;
|
$params{$variable} .= $_;
|
||||||
} else {
|
} else {
|
||||||
get_params_bug( @params , $_ ) unless $bug++;
|
warning_message "Param line ($_) ignored" unless $bug++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -43,6 +43,16 @@ VI. PROBLEMS CORRECTED AND NEW FEATURES IN PRIOR RELEASES
|
|||||||
1) A bug catcher has been installed in the params file processing
|
1) A bug catcher has been installed in the params file processing
|
||||||
logic to help determine why parameter processing is failing.
|
logic to help determine why parameter processing is failing.
|
||||||
|
|
||||||
|
If you see this:
|
||||||
|
|
||||||
|
BUG: get_params()
|
||||||
|
|
||||||
|
then please copy/paste the displayed information and send it to the
|
||||||
|
user's or developer's mailing list.
|
||||||
|
|
||||||
|
Note: Your firewall should still start/restart okay when the above
|
||||||
|
message appears.
|
||||||
|
|
||||||
----------------------------------------------------------------------------
|
----------------------------------------------------------------------------
|
||||||
I V. R E L E A S E 4 . 4 H I G H L I G H T S
|
I V. R E L E A S E 4 . 4 H I G H L I G H T S
|
||||||
----------------------------------------------------------------------------
|
----------------------------------------------------------------------------
|
||||||
|
Loading…
Reference in New Issue
Block a user