diff options
author | Mike Frysinger <vapier@gentoo.org> | 2007-03-12 21:49:04 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2007-03-12 21:49:04 +0000 |
commit | 073cde233bc1c0fa846216af43ef00ac95a24924 (patch) | |
tree | 5b3ccbfec59e2c72f5cef90716dcafee640f3ee2 /net-firewall/iptables | |
parent | Replacing text-markup herd with the new sgml herd. (diff) | |
download | gentoo-2-073cde233bc1c0fa846216af43ef00ac95a24924.tar.gz gentoo-2-073cde233bc1c0fa846216af43ef00ac95a24924.tar.bz2 gentoo-2-073cde233bc1c0fa846216af43ef00ac95a24924.zip |
back out a lot of pointless quotes
(Portage version: 2.1.2.2)
Diffstat (limited to 'net-firewall/iptables')
-rwxr-xr-x | net-firewall/iptables/files/iptables-1.3.2.init | 46 |
1 files changed, 23 insertions, 23 deletions
diff --git a/net-firewall/iptables/files/iptables-1.3.2.init b/net-firewall/iptables/files/iptables-1.3.2.init index 3339a3abdd4c..e63d8ea9e221 100755 --- a/net-firewall/iptables/files/iptables-1.3.2.init +++ b/net-firewall/iptables/files/iptables-1.3.2.init @@ -1,7 +1,7 @@ #!/sbin/runscript -# Copyright 1999-2005 Gentoo Foundation +# Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-firewall/iptables/files/iptables-1.3.2.init,v 1.5 2007/03/10 23:04:51 uberlord Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-firewall/iptables/files/iptables-1.3.2.init,v 1.6 2007/03/12 21:49:04 vapier Exp $ opts="save reload panic" @@ -11,7 +11,7 @@ if [ "${iptables_name}" != "iptables" -a "${iptables_name}" != "ip6tables" ] ; t fi iptables_bin="/sbin/${iptables_name}" -case "${iptables_name}" in +case ${iptables_name} in iptables) iptables_proc="/proc/net/ip_tables_names" iptables_save=${IPTABLES_SAVE};; ip6tables) iptables_proc="/proc/net/ip6_tables_names" @@ -25,7 +25,7 @@ depend() { set_table_policy() { local chains table=$1 policy=$2 - case "${table}" in + case ${table} in nat) chains="PREROUTING POSTROUTING OUTPUT";; mangle) chains="PREROUTING INPUT FORWARD OUTPUT POSTROUTING";; filter) chains="INPUT FORWARD OUTPUT";; @@ -33,12 +33,12 @@ set_table_policy() { esac local chain for chain in ${chains} ; do - "${iptables_bin}" -t "${table}" -P "${chain}" "${policy}" + ${iptables_bin} -t ${table} -P ${chain} ${policy} done } checkkernel() { - if [ ! -e "${iptables_proc}" ] ; then + if [ ! -e ${iptables_proc} ] ; then eerror "Your kernel lacks ${iptables_name} support, please load" eerror "appropriate modules and try again." return 1 @@ -46,7 +46,7 @@ checkkernel() { return 0 } checkconfig() { - if [ ! -f "${iptables_save}" ] ; then + if [ ! -f ${iptables_save} ] ; then eerror "Not starting ${iptables_name}. First create some rules then run:" eerror "/etc/init.d/${iptables_name} save" return 1 @@ -57,7 +57,7 @@ checkconfig() { start() { checkconfig || return 1 ebegin "Loading ${iptables_name} state and starting firewall" - "${iptables_bin}"-restore ${SAVE_RESTORE_OPTIONS} < "${iptables_save}" + ${iptables_bin}-restore ${SAVE_RESTORE_OPTIONS} < "${iptables_save}" eend $? } @@ -67,12 +67,12 @@ stop() { fi checkkernel || return 1 ebegin "Stopping firewall" - local a= - for a in $(cat "${iptables_proc}") ; do + local a + for a in $(cat ${iptables_proc}) ; do set_table_policy $a ACCEPT - "${iptables_bin}" -F -t "$a" - "${iptables_bin}" -X -t "$a" + ${iptables_bin} -F -t $a + ${iptables_bin} -X -t $a done eend $? } @@ -80,10 +80,10 @@ stop() { reload() { checkkernel || return 1 ebegin "Flushing firewall" - local a= - for a in $(cat "${iptables_proc}") ; do - "${iptables_bin}" -F -t "$a" - "${iptables_bin}" -X -t "$a" + local a + for a in $(cat ${iptables_proc}) ; do + ${iptables_bin} -F -t $a + ${iptables_bin} -X -t $a done eend $? @@ -94,21 +94,21 @@ save() { ebegin "Saving ${iptables_name} state" touch "${iptables_save}" chmod 0600 "${iptables_save}" - "${iptables_bin}"-save ${SAVE_RESTORE_OPTIONS} > "${iptables_save}" + ${iptables_bin}-save ${SAVE_RESTORE_OPTIONS} > "${iptables_save}" eend $? } panic() { checkkernel || return 1 - service_started "${iptables_name}" && svc_stop + service_started ${iptables_name} && svc_stop - local a= + local a ebegin "Dropping all packets" - for a in $(cat "${iptables_proc}") ; do - "${iptables_bin}" -F -t "$a" - "${iptables_bin}" -X -t "$a" + for a in $(cat ${iptables_proc}) ; do + ${iptables_bin} -F -t $a + ${iptables_bin} -X -t $a - set_table_policy "$a" DROP + set_table_policy $a DROP done eend $? } |