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
|
|
|
#
|
2005-07-09 07:45:05 +02:00
|
|
|
# (c) 2001,2002,2003,2004,2005 - Tom Eastep (teastep@shorewall.net)
|
2002-05-01 01:13:15 +02:00
|
|
|
#
|
2005-07-20 05:36:31 +02:00
|
|
|
# Shorewall documentation is available at http://shorewall.net
|
2002-05-01 01:13:15 +02:00
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
|
2005-07-26 01:08:09 +02:00
|
|
|
VERSION=2.5.0
|
2002-05-01 01:13:15 +02:00
|
|
|
|
|
|
|
usage() # $1 = exit status
|
|
|
|
{
|
2005-07-09 06:45:32 +02:00
|
|
|
echo "usage: $(basename $0)"
|
2002-05-01 01:13:15 +02:00
|
|
|
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
|
2005-07-09 06:45:32 +02:00
|
|
|
FIREWALL=$(ls -l /usr/share/shorewall/firewall | sed 's/^.*> //')
|
2003-02-08 21:58:44 +01:00
|
|
|
restore_file $FIREWALL
|
2005-07-09 06:45:32 +02:00
|
|
|
else
|
|
|
|
restore_file /etc/init.d/shorewall
|
2002-05-01 01:13:15 +02:00
|
|
|
fi
|
|
|
|
|
2005-07-09 06:45:32 +02:00
|
|
|
restore_file /usr/share/shorewall/firewall
|
2002-05-01 01:13:15 +02:00
|
|
|
|
2005-07-09 06:45:32 +02:00
|
|
|
restore_file /sbin/shorewall
|
2002-05-01 01:13:15 +02:00
|
|
|
|
|
|
|
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
|
|
|
|
2005-07-09 07:45:05 +02:00
|
|
|
restore_file /etc/shorewall/ipsec
|
|
|
|
|
2002-05-01 01:13:15 +02:00
|
|
|
restore_file /etc/shorewall/hosts
|
|
|
|
|
|
|
|
restore_file /etc/shorewall/rules
|
|
|
|
|
|
|
|
restore_file /etc/shorewall/nat
|
|
|
|
|
2005-07-09 06:45:32 +02:00
|
|
|
restore_file /etc/shorewall/netmap
|
|
|
|
|
2002-05-01 01:13:15 +02:00
|
|
|
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
|
2005-07-09 06:45:32 +02:00
|
|
|
restore_file /usr/share/shorewall/rfc1918
|
|
|
|
|
|
|
|
restore_file /usr/share/shorewall/bogons
|
|
|
|
|
|
|
|
restore_file /usr/share/shorewall/configpath
|
2002-06-01 02:28:18 +02:00
|
|
|
|
2002-12-19 21:14:10 +01:00
|
|
|
restore_file /etc/shorewall/init
|
|
|
|
|
2005-07-09 06:45:32 +02:00
|
|
|
restore_file /etc/shorewall/initdone
|
|
|
|
|
2002-12-19 21:14:10 +01:00
|
|
|
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
|
|
|
|
|
2003-08-10 03:11:50 +02:00
|
|
|
restore_file /etc/shorewall/accounting
|
|
|
|
|
2005-07-09 06:45:32 +02:00
|
|
|
restore_file /etc/shorewall/actions.std
|
2003-08-23 20:14:59 +02:00
|
|
|
|
2003-12-04 03:01:08 +01:00
|
|
|
restore_file /etc/shorewall/actions
|
|
|
|
|
2005-07-09 06:45:32 +02:00
|
|
|
for f in /usr/share/shorewall/action.*-${VERSION}.bkout; do
|
|
|
|
restore_file $(echo $f | sed "s/-${VERSION}.bkout//")
|
|
|
|
done
|
|
|
|
|
|
|
|
restore_file /usr/share/shorewall/version
|
2002-05-01 01:13:15 +02:00
|
|
|
|
|
|
|
echo "Shorewall Restored to Version $oldversion"
|
|
|
|
|
|
|
|
|