2004-01-31 17:11:22 +01:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
|
|
|
# Script to back out the installation of Shoreline Firewall and to restore the previous version of
|
|
|
|
# the program
|
|
|
|
#
|
|
|
|
# This program is under GPL [http://www.gnu.org/copyleft/gpl.htm]
|
|
|
|
#
|
|
|
|
# (c) 2001,2002,2003,2004 - Tom Eastep (teastep@shorewall.net)
|
|
|
|
#
|
|
|
|
# Shorewall documentation is available at http://seattlefirewall.dyndns.org
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of Version 2 of the GNU General Public License
|
|
|
|
# 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
|
|
|
|
# shown below. Simply run this script to revert to your prior version of
|
|
|
|
# Shoreline Firewall.
|
|
|
|
|
2004-07-30 03:15:19 +02:00
|
|
|
VERSION=2.1.2
|
2004-01-31 17:11:22 +01:00
|
|
|
|
|
|
|
usage() # $1 = exit status
|
|
|
|
{
|
2004-02-02 21:15:44 +01:00
|
|
|
echo "usage: $(basename $0)"
|
2004-01-31 17:11:22 +01:00
|
|
|
exit $1
|
|
|
|
}
|
|
|
|
|
|
|
|
restore_file() # $1 = file to restore
|
|
|
|
{
|
|
|
|
if [ -f ${1}-${VERSION}.bkout -o -L ${1}-${VERSION}.bkout ]; then
|
|
|
|
if (mv -f ${1}-${VERSION}.bkout $1); then
|
|
|
|
echo
|
|
|
|
echo "$1 restored"
|
|
|
|
else
|
|
|
|
echo "ERROR: Could not restore $1"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2004-02-10 00:52:01 +01:00
|
|
|
if [ ! -f /usr/share/shorewall/version-${VERSION}.bkout ]; then
|
2004-01-31 17:11:22 +01:00
|
|
|
echo "Shorewall Version $VERSION is not installed"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo "Backing Out Installation of Shorewall $VERSION"
|
|
|
|
|
2004-02-10 00:52:01 +01:00
|
|
|
if [ -L /usr/share/shorewall/init ]; then
|
|
|
|
FIREWALL=$(ls -l /usr/share/shorewall/firewall | sed 's/^.*> //')
|
2004-01-31 17:11:22 +01:00
|
|
|
restore_file $FIREWALL
|
2004-01-31 19:06:14 +01:00
|
|
|
else
|
2004-02-10 00:52:01 +01:00
|
|
|
restore_file /etc/init.d/shorewall
|
2004-01-31 17:11:22 +01:00
|
|
|
fi
|
|
|
|
|
2004-02-10 00:52:01 +01:00
|
|
|
restore_file /usr/share/shorewall/firewall
|
2004-01-31 17:11:22 +01:00
|
|
|
|
2004-02-10 00:52:01 +01:00
|
|
|
restore_file /sbin/shorewall
|
2004-01-31 17:11:22 +01:00
|
|
|
|
2004-02-10 00:52:01 +01:00
|
|
|
restore_file /etc/shorewall/shorewall.conf
|
2004-01-31 17:11:22 +01:00
|
|
|
|
2004-02-10 00:52:01 +01:00
|
|
|
restore_file /etc/shorewall/functions
|
|
|
|
restore_file /usr/lib/shorewall/functions
|
|
|
|
restore_file /var/lib/shorewall/functions
|
|
|
|
restore_file /usr/lib/shorewall/firewall
|
|
|
|
restore_file /usr/lib/shorewall/help
|
2004-01-31 17:11:22 +01:00
|
|
|
|
2004-02-10 00:52:01 +01:00
|
|
|
restore_file /etc/shorewall/common.def
|
2004-01-31 17:11:22 +01:00
|
|
|
|
2004-02-10 00:52:01 +01:00
|
|
|
restore_file /etc/shorewall/icmp.def
|
2004-01-31 17:11:22 +01:00
|
|
|
|
2004-02-10 00:52:01 +01:00
|
|
|
restore_file /etc/shorewall/zones
|
2004-01-31 17:11:22 +01:00
|
|
|
|
2004-02-10 00:52:01 +01:00
|
|
|
restore_file /etc/shorewall/policy
|
2004-01-31 17:11:22 +01:00
|
|
|
|
2004-02-10 00:52:01 +01:00
|
|
|
restore_file /etc/shorewall/interfaces
|
2004-01-31 17:11:22 +01:00
|
|
|
|
2004-02-10 00:52:01 +01:00
|
|
|
restore_file /etc/shorewall/hosts
|
2004-01-31 17:11:22 +01:00
|
|
|
|
2004-02-10 00:52:01 +01:00
|
|
|
restore_file /etc/shorewall/rules
|
2004-01-31 17:11:22 +01:00
|
|
|
|
2004-02-10 00:52:01 +01:00
|
|
|
restore_file /etc/shorewall/nat
|
2004-01-31 17:11:22 +01:00
|
|
|
|
2004-03-18 22:36:27 +01:00
|
|
|
restore_file /etc/shorewall/netmap
|
|
|
|
|
2004-02-10 00:52:01 +01:00
|
|
|
restore_file /etc/shorewall/params
|
2004-01-31 17:11:22 +01:00
|
|
|
|
2004-02-10 00:52:01 +01:00
|
|
|
restore_file /etc/shorewall/proxyarp
|
2004-01-31 17:11:22 +01:00
|
|
|
|
2004-02-10 00:52:01 +01:00
|
|
|
restore_file /etc/shorewall/routestopped
|
2004-01-31 17:11:22 +01:00
|
|
|
|
2004-02-10 00:52:01 +01:00
|
|
|
restore_file /etc/shorewall/maclist
|
2004-01-31 17:11:22 +01:00
|
|
|
|
2004-02-10 00:52:01 +01:00
|
|
|
restore_file /etc/shorewall/masq
|
2004-01-31 17:11:22 +01:00
|
|
|
|
2004-02-10 00:52:01 +01:00
|
|
|
restore_file /etc/shorewall/modules
|
2004-01-31 17:11:22 +01:00
|
|
|
|
2004-02-10 00:52:01 +01:00
|
|
|
restore_file /etc/shorewall/tcrules
|
2004-01-31 17:11:22 +01:00
|
|
|
|
2004-02-10 00:52:01 +01:00
|
|
|
restore_file /etc/shorewall/tos
|
2004-01-31 17:11:22 +01:00
|
|
|
|
2004-02-10 00:52:01 +01:00
|
|
|
restore_file /etc/shorewall/tunnels
|
2004-01-31 17:11:22 +01:00
|
|
|
|
2004-02-10 00:52:01 +01:00
|
|
|
restore_file /etc/shorewall/blacklist
|
2004-01-31 17:11:22 +01:00
|
|
|
|
2004-02-10 00:52:01 +01:00
|
|
|
restore_file /etc/shorewall/whitelist
|
2004-01-31 17:11:22 +01:00
|
|
|
|
2004-02-10 00:52:01 +01:00
|
|
|
restore_file /etc/shorewall/rfc1918
|
2004-02-16 22:05:28 +01:00
|
|
|
restore_file /usr/share/shorewall/rfc1918
|
2004-01-31 17:11:22 +01:00
|
|
|
|
2004-03-17 20:06:54 +01:00
|
|
|
restore_file /usr/share/shorewall/bogons
|
|
|
|
|
2004-04-15 15:51:55 +02:00
|
|
|
restore_file /usr/share/shorewall/configpath
|
|
|
|
|
2004-02-10 00:52:01 +01:00
|
|
|
restore_file /etc/shorewall/init
|
2004-01-31 17:11:22 +01:00
|
|
|
|
2004-05-11 03:47:45 +02:00
|
|
|
restore_file /etc/shorewall/initdone
|
|
|
|
|
2004-02-10 00:52:01 +01:00
|
|
|
restore_file /etc/shorewall/start
|
2004-01-31 17:11:22 +01:00
|
|
|
|
2004-02-10 00:52:01 +01:00
|
|
|
restore_file /etc/shorewall/stop
|
2004-01-31 17:11:22 +01:00
|
|
|
|
2004-02-10 00:52:01 +01:00
|
|
|
restore_file /etc/shorewall/stopped
|
2004-01-31 17:11:22 +01:00
|
|
|
|
2004-02-10 00:52:01 +01:00
|
|
|
restore_file /etc/shorewall/ecn
|
2004-01-31 17:11:22 +01:00
|
|
|
|
2004-02-10 00:52:01 +01:00
|
|
|
restore_file /etc/shorewall/accounting
|
2004-01-31 17:11:22 +01:00
|
|
|
|
2004-02-10 00:52:01 +01:00
|
|
|
restore_file /etc/shorewall/actions.std
|
2004-01-31 17:11:22 +01:00
|
|
|
|
2004-02-10 00:52:01 +01:00
|
|
|
restore_file /etc/shorewall/actions
|
|
|
|
|
2004-02-15 18:52:27 +01:00
|
|
|
for f in /usr/share/shorewall/action.*-${VERSION}.bkout; do
|
2004-01-31 19:06:14 +01:00
|
|
|
restore_file $(echo $f | sed "s/-${VERSION}.bkout//")
|
|
|
|
done
|
2004-01-31 17:11:22 +01:00
|
|
|
|
2004-02-10 00:52:01 +01:00
|
|
|
restore_file /usr/share/shorewall/version
|
2004-01-31 17:11:22 +01:00
|
|
|
|
2004-02-10 00:52:01 +01:00
|
|
|
echo "Shorewall Restored to Version $oldversion"
|
2004-01-31 17:11:22 +01:00
|
|
|
|
|
|
|
|