2002-05-01 01:13:15 +02:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
2003-02-23 15:10:37 +01:00
|
|
|
# Script to back out the installation of Shoreline Firewall and to restore the previous version of
|
2002-05-01 01:13:15 +02:00
|
|
|
# the program
|
|
|
|
#
|
2003-02-23 15:10:37 +01:00
|
|
|
# This program is under GPL [http://www.gnu.org/copyleft/gpl.htm]
|
2002-05-01 01:13:15 +02:00
|
|
|
#
|
2003-01-31 19:04:57 +01:00
|
|
|
# (c) 2001,2002,2003 - Tom Eastep (teastep@shorewall.net)
|
2002-05-01 01:13:15 +02:00
|
|
|
#
|
|
|
|
# Shorewall documentation is available at http://seattlefirewall.dyndns.org
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
2003-02-23 15:10:37 +01:00
|
|
|
# it under the terms of Version 2 of the GNU General Public License
|
2002-05-01 01:13:15 +02:00
|
|
|
# as published by the Free Software Foundation.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA
|
|
|
|
#
|
|
|
|
# Usage:
|
|
|
|
#
|
|
|
|
# You may only use this script to back out the installation of the version
|
2003-02-23 15:10:37 +01:00
|
|
|
# shown below. Simply run this script to revert to your prior version of
|
2002-05-01 01:13:15 +02:00
|
|
|
# Shoreline Firewall.
|
|
|
|
|
2003-08-01 04:49:12 +02:00
|
|
|
VERSION=1.4.6-20030731
|
2002-05-01 01:13:15 +02:00
|
|
|
|
|
|
|
usage() # $1 = exit status
|
|
|
|
{
|
|
|
|
echo "usage: `basename $0`"
|
|
|
|
exit $1
|
|
|
|
}
|
|
|
|
|
|
|
|
restore_file() # $1 = file to restore
|
|
|
|
{
|
2002-10-15 17:00:11 +02:00
|
|
|
if [ -f ${1}-${VERSION}.bkout -o -L ${1}-${VERSION}.bkout ]; then
|
2002-05-01 01:13:15 +02:00
|
|
|
if (mv -f ${1}-${VERSION}.bkout $1); then
|
|
|
|
echo
|
|
|
|
echo "$1 restored"
|
|
|
|
else
|
|
|
|
echo "ERROR: Could not restore $1"
|
|
|
|
exit 1
|
|
|
|
fi
|
2003-02-23 15:10:37 +01:00
|
|
|
fi
|
2002-05-01 01:13:15 +02:00
|
|
|
}
|
|
|
|
|
2003-02-08 21:58:44 +01:00
|
|
|
if [ ! -f /usr/share/shorewall/version-${VERSION}.bkout ]; then
|
2002-06-15 19:27:41 +02:00
|
|
|
echo "Shorewall Version $VERSION is not installed"
|
2002-05-01 01:13:15 +02:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo "Backing Out Installation of Shorewall $VERSION"
|
|
|
|
|
2003-02-08 21:58:44 +01:00
|
|
|
if [ -L /usr/share/shorewall/init ]; then
|
|
|
|
FIREWALL=`ls -l /usr/share/shorewall/firewall | sed 's/^.*> //'`
|
|
|
|
restore_file $FIREWALL
|
|
|
|
restore_file /usr/share/shorewall/firewall
|
|
|
|
elif [ -L /usr/lib/shorewall/firewall ]; then
|
2002-09-27 23:10:21 +02:00
|
|
|
FIREWALL=`ls -l /usr/lib/shorewall/firewall | sed 's/^.*> //'`
|
|
|
|
restore_file $FIREWALL
|
|
|
|
elif [ -L /var/lib/shorewall/firewall ]; then
|
2002-06-15 19:27:41 +02:00
|
|
|
FIREWALL=`ls -l /var/lib/shorewall/firewall | sed 's/^.*> //'`
|
2002-05-01 01:13:15 +02:00
|
|
|
restore_file $FIREWALL
|
2002-10-15 17:00:11 +02:00
|
|
|
elif [ -L /usr/lib/shorewall/init ]; then
|
|
|
|
FIREWALL=`ls -l /usr/lib/shorewall/init | sed 's/^.*> //'`
|
|
|
|
restore_file $FIREWALL
|
|
|
|
restore_file /usr/lib/shorewall/firewall
|
2002-05-01 01:13:15 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
restore_file /sbin/shorewall
|
|
|
|
|
|
|
|
[ -f /etc/shorewall.conf.$VERSION ] && rm -f /etc/shorewall.conf.$VERSION
|
|
|
|
|
|
|
|
restore_file /etc/shorewall/shorewall.conf
|
2003-02-23 15:10:37 +01:00
|
|
|
|
2002-05-01 01:13:15 +02:00
|
|
|
restore_file /etc/shorewall/functions
|
2002-09-27 23:10:21 +02:00
|
|
|
restore_file /usr/lib/shorewall/functions
|
2002-06-15 19:27:41 +02:00
|
|
|
restore_file /var/lib/shorewall/functions
|
2002-10-15 17:00:11 +02:00
|
|
|
restore_file /usr/lib/shorewall/firewall
|
2003-07-27 20:17:39 +02:00
|
|
|
restore_file /usr/lib/shorewall/help
|
2002-05-01 01:13:15 +02:00
|
|
|
|
|
|
|
restore_file /etc/shorewall/common.def
|
|
|
|
|
|
|
|
restore_file /etc/shorewall/icmp.def
|
|
|
|
|
|
|
|
restore_file /etc/shorewall/zones
|
|
|
|
|
|
|
|
restore_file /etc/shorewall/policy
|
|
|
|
|
|
|
|
restore_file /etc/shorewall/interfaces
|
2003-02-23 15:10:37 +01:00
|
|
|
|
2002-05-01 01:13:15 +02:00
|
|
|
restore_file /etc/shorewall/hosts
|
|
|
|
|
|
|
|
restore_file /etc/shorewall/rules
|
|
|
|
|
|
|
|
restore_file /etc/shorewall/nat
|
|
|
|
|
|
|
|
restore_file /etc/shorewall/params
|
|
|
|
|
|
|
|
restore_file /etc/shorewall/proxyarp
|
|
|
|
|
2002-07-11 02:01:45 +02:00
|
|
|
restore_file /etc/shorewall/routestopped
|
|
|
|
|
2002-10-22 20:07:52 +02:00
|
|
|
restore_file /etc/shorewall/maclist
|
|
|
|
|
2002-05-01 01:13:15 +02:00
|
|
|
restore_file /etc/shorewall/masq
|
|
|
|
|
|
|
|
restore_file /etc/shorewall/modules
|
|
|
|
|
|
|
|
restore_file /etc/shorewall/tcrules
|
|
|
|
|
|
|
|
restore_file /etc/shorewall/tos
|
|
|
|
|
|
|
|
restore_file /etc/shorewall/tunnels
|
|
|
|
|
|
|
|
restore_file /etc/shorewall/blacklist
|
|
|
|
|
|
|
|
restore_file /etc/shorewall/whitelist
|
|
|
|
|
2002-06-01 02:28:18 +02:00
|
|
|
restore_file /etc/shorewall/rfc1918
|
|
|
|
|
2002-12-19 21:14:10 +01:00
|
|
|
restore_file /etc/shorewall/init
|
|
|
|
|
|
|
|
restore_file /etc/shorewall/start
|
|
|
|
|
|
|
|
restore_file /etc/shorewall/stop
|
|
|
|
|
|
|
|
restore_file /etc/shorewall/stopped
|
|
|
|
|
2003-02-24 16:24:55 +01:00
|
|
|
restore_file /etc/shorewall/ecn
|
|
|
|
|
2002-09-27 23:10:21 +02:00
|
|
|
if [ -f /usr/lib/shorewall/version-${VERSION}.bkout ]; then
|
|
|
|
restore_file /usr/lib/shorewall/version
|
|
|
|
oldversion="`cat /usr/lib/shorewall/version`"
|
|
|
|
elif [ -f /var/lib/shorewall/version-${VERSION}.bkout ]; then
|
|
|
|
restore_file /var/lib/shorewall/version
|
2002-06-16 16:26:31 +02:00
|
|
|
oldversion="`cat /var/lib/shorewall/version`"
|
|
|
|
else
|
|
|
|
restore_file /etc/shorewall/version
|
|
|
|
oldversion="`cat /etc/shorewall/version`"
|
|
|
|
fi
|
2002-05-01 01:13:15 +02:00
|
|
|
|
|
|
|
echo "Shorewall Restored to Version $oldversion"
|
|
|
|
|
|
|
|
|