mirror of
https://gitlab.com/shorewall/code.git
synced 2024-11-14 19:54:06 +01:00
a) Rewrote 'list_count' to not require 'wc'
b) Turn off trace after error c) Allow output ICMP unconditionally again git-svn-id: https://shorewall.svn.sourceforge.net/svnroot/shorewall/trunk@350 fbd18981-670d-0410-9b5c-8dc0c1a9a2bb
This commit is contained in:
parent
0f33d5af0d
commit
14a20ece71
@ -61,9 +61,11 @@ list_search() # $1 = element to search for , $2-$n = list
|
||||
# Function to count list elements
|
||||
#
|
||||
list_count() {
|
||||
local temp="`separate_list $1`"
|
||||
|
||||
echo $temp | wc -w
|
||||
arg_count() {
|
||||
echo $#
|
||||
}
|
||||
|
||||
arg_count `separate_list $1`
|
||||
}
|
||||
|
||||
#
|
||||
@ -1103,6 +1105,17 @@ run_user_exit() # $1 = file name
|
||||
# Stop the Firewall
|
||||
#
|
||||
stop_firewall() {
|
||||
#
|
||||
# Turn off trace unless we were tracing "stop" or "clear"
|
||||
#
|
||||
case $command in
|
||||
stop|clear)
|
||||
;;
|
||||
*)
|
||||
set +x
|
||||
;;
|
||||
esac
|
||||
|
||||
stopping="Yes"
|
||||
|
||||
deletechain shorewall
|
||||
@ -3386,7 +3399,7 @@ add_common_rules() {
|
||||
#
|
||||
# Enable icmp output
|
||||
#
|
||||
run_iptables -A OUTPUT -m state --state ! INVALID -p icmp -j ACCEPT
|
||||
run_iptables -A OUTPUT -p icmp -j ACCEPT
|
||||
#
|
||||
# Route Filtering
|
||||
#
|
||||
|
Loading…
Reference in New Issue
Block a user