mirror of
https://gitlab.com/shorewall/code.git
synced 2024-12-22 06:10:42 +01:00
Allow the '-V' option in the CLI programs.
Signed-off-by: Tom Eastep <teastep@shorewall.net>
This commit is contained in:
parent
739f3779f5
commit
f6a55bbf05
@ -3421,8 +3421,16 @@ shorewall_cli() {
|
||||
g_fast=Yes
|
||||
option=${option#f}
|
||||
;;
|
||||
v*)
|
||||
option=${option#v}
|
||||
[vV]*)
|
||||
case $option in
|
||||
v*)
|
||||
option=${option#v}
|
||||
;;
|
||||
*)
|
||||
option=${option#V}
|
||||
;;
|
||||
esac
|
||||
|
||||
case $option in
|
||||
-1*)
|
||||
g_use_verbosity=-1
|
||||
|
@ -1409,18 +1409,16 @@ sub process_providers( $ ) {
|
||||
}
|
||||
}
|
||||
|
||||
if ( $providers || $pseudoproviders ) {
|
||||
my $fn = open_file 'routes';
|
||||
my $fn = open_file 'routes';
|
||||
|
||||
if ( $fn ) {
|
||||
first_entry "$doing $fn...";
|
||||
emit '';
|
||||
add_a_route while read_a_line( NORMAL_READ );
|
||||
}
|
||||
|
||||
add_a_provider( $providers{$_}, $tcdevices ) for @providers;
|
||||
if ( $fn ) {
|
||||
first_entry "$doing $fn...";
|
||||
emit '';
|
||||
add_a_route while read_a_line( NORMAL_READ );
|
||||
}
|
||||
|
||||
add_a_provider( $providers{$_}, $tcdevices ) for @providers;
|
||||
|
||||
emit << 'EOF';;
|
||||
|
||||
#
|
||||
|
Loading…
Reference in New Issue
Block a user