diff options
author | Constanze Hausner <constanze@gentoo.org> | 2011-03-27 11:00:00 +0000 |
---|---|---|
committer | Constanze Hausner <constanze@gentoo.org> | 2011-03-27 11:00:00 +0000 |
commit | 970381af01cc23813df895b7d3260c5677227976 (patch) | |
tree | 10a1a1a34e62b1d0f2677671824b37823ce0ab2c /net-firewall/shorewall/files | |
parent | Fix slot-deps on gnome libs (diff) | |
download | gentoo-2-970381af01cc23813df895b7d3260c5677227976.tar.gz gentoo-2-970381af01cc23813df895b7d3260c5677227976.tar.bz2 gentoo-2-970381af01cc23813df895b7d3260c5677227976.zip |
Cleaning up old versions; version bump
(Portage version: 2.1.9.42/cvs/Linux x86_64)
Diffstat (limited to 'net-firewall/shorewall/files')
-rw-r--r-- | net-firewall/shorewall/files/4.4.10-underscore-not-dash.patch | 12 | ||||
-rw-r--r-- | net-firewall/shorewall/files/shorewall-r1 | 47 | ||||
-rw-r--r-- | net-firewall/shorewall/files/shorewall-r2 | 75 |
3 files changed, 0 insertions, 134 deletions
diff --git a/net-firewall/shorewall/files/4.4.10-underscore-not-dash.patch b/net-firewall/shorewall/files/4.4.10-underscore-not-dash.patch deleted file mode 100644 index 15e3671aa59a..000000000000 --- a/net-firewall/shorewall/files/4.4.10-underscore-not-dash.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff -uNr shorewall-4.4.10.ORIG//install.sh shorewall-4.4.10/install.sh ---- shorewall-4.4.10.ORIG//install.sh 2010-06-16 15:32:46.000000000 +0100 -+++ shorewall-4.4.10/install.sh 2010-06-16 15:33:29.000000000 +0100 -@@ -745,7 +745,7 @@ - # - # Install the Makefiles - # --install-file Makefile-lite ${DESTDIR}/usr/share/shorewall/configfiles/Makefile 0644 -+install_file Makefile-lite ${DESTDIR}/usr/share/shorewall/configfiles/Makefile 0644 - - if [ -z "$SPARSE" ]; then - run_install $OWNERSHIP -m 0600 Makefile ${DESTDIR}/etc/shorewall diff --git a/net-firewall/shorewall/files/shorewall-r1 b/net-firewall/shorewall/files/shorewall-r1 deleted file mode 100644 index 548b4d95c01d..000000000000 --- a/net-firewall/shorewall/files/shorewall-r1 +++ /dev/null @@ -1,47 +0,0 @@ -#!/sbin/runscript -# Copyright 1999-2004 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-firewall/shorewall/files/shorewall-r1,v 1.1 2006/02/19 02:33:35 vanquirius Exp $ - -opts="start stop restart clear" - -depend() { - need net - provide firewall - after ulogd -} - -start() { - ebegin "Starting firewall" - /sbin/shorewall -f start 1>/dev/null - eend $? -} - -stop() { - ebegin "Stopping firewall" - /sbin/shorewall stop 1>/dev/null - eend $? -} - -restart() { - # shorewall comes with its own control script that includes a - # restart function, so refrain from calling svc_stop/svc_start - # here. Note that this comment is required to fix bug 55576; - # runscript.sh greps this script... (09 Jul 2004 agriffis) - ebegin "Restarting firewall" - if [ -f /var/lib/shorewall/restore ] ; then - /sbin/shorewall restore - else - /sbin/shorewall restart 1>/dev/null - fi - eend $? -} - -clear() { - # clear will remove all the rules and bring the system to an unfirewalled - # state. (21 Nov 2004 eldad) - - ebegin "Clearing all firewall rules and setting policy to ACCEPT" - /sbin/shorewall clear - eend $? -} diff --git a/net-firewall/shorewall/files/shorewall-r2 b/net-firewall/shorewall/files/shorewall-r2 deleted file mode 100644 index ddcdd521a7f2..000000000000 --- a/net-firewall/shorewall/files/shorewall-r2 +++ /dev/null @@ -1,75 +0,0 @@ -#!/sbin/runscript -# Copyright 1999-2006 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-firewall/shorewall/files/shorewall-r2,v 1.1 2006/09/18 12:25:40 strerror Exp $ - -opts="start stop restart clear reset refresh check" - -depend() { - need net - provide firewall - after ulogd -} - -start() { - ebegin "Starting firewall" - /sbin/shorewall -f start 1>/dev/null - eend $? -} - -stop() { - ebegin "Stopping firewall" - /sbin/shorewall stop 1>/dev/null - eend $? -} - -restart() { - # shorewall comes with its own control script that includes a - # restart function, so refrain from calling svc_stop/svc_start - # here. Note that this comment is required to fix bug 55576; - # runscript.sh greps this script... (09 Jul 2004 agriffis) - ebegin "Restarting firewall" - if [ -f /var/lib/shorewall/restore ] ; then - /sbin/shorewall restore - else - /sbin/shorewall restart 1>/dev/null - fi - eend $? -} - -clear() { - # clear will remove all the rules and bring the system to an unfirewalled - # state. (21 Nov 2004 eldad) - - ebegin "Clearing all firewall rules and setting policy to ACCEPT" - /sbin/shorewall clear - eend $? -} - -reset() { - # reset the packet and byte counters in the firewall - - ebegin "Resetting the packet and byte counters in the firewall" - /sbin/shorewall reset - eend $? -} - -refresh() { - # refresh the rules involving the broadcast addresses of firewall - # interfaces, the black list, traffic control rules and - # ECN control rules - - ebegin "Refreshing firewall rules" - /sbin/shorewall refresh - eend $? -} - -check() { - # perform cursory validation of the zones, interfaces, hosts, rules - # and policy files. CAUTION: does not parse and validate the generated - # iptables commands. - - ebegin "Checking configuration files" - /sbin/shorewall check - eend $? -} |