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.
|
|
|
|
|
2006-02-24 20:28:41 +01:00
|
|
|
VERSION=3.1.8
|
2006-02-03 23:44:07 +01:00
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
2005-08-31 23:58:24 +02:00
|
|
|
restore_directory() # $1 = directory to restore
|
|
|
|
{
|
|
|
|
if [ -d ${1}-${VERSION}.bkout ]; then
|
2005-09-14 20:36:55 +02:00
|
|
|
if mv -f $1 ${1}-${VERSION} && mv ${1}-${VERSION}.bkout $1; then
|
2005-08-31 23:58:24 +02:00
|
|
|
echo
|
|
|
|
echo "$1 restored"
|
2005-09-14 20:36:55 +02:00
|
|
|
rm -rf ${1}-${VERSION}
|
2005-08-31 23:58:24 +02:00
|
|
|
else
|
|
|
|
echo "ERROR: Could not restore $1"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
fi
|
2005-10-04 22:17:30 +02:00
|
|
|
}
|
|
|
|
|
2005-09-13 19:13:35 +02:00
|
|
|
restore_file() # $1 = file to restore, $2 = (Optional) Directory to restore from
|
2002-05-01 01:13:15 +02:00
|
|
|
{
|
2005-09-13 19:13:35 +02:00
|
|
|
if [ -n "$2" ]; then
|
|
|
|
local file=$(basename $1)
|
|
|
|
|
|
|
|
if [ -f $2/$file ]; then
|
|
|
|
if mv -f $2/$file $1 ; then
|
|
|
|
echo
|
|
|
|
echo "$1 restored"
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo "ERROR: Could not restore $1"
|
|
|
|
exit 1
|
|
|
|
fi
|
2005-10-04 22:17:30 +02:00
|
|
|
fi
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2005-08-31 23:58:24 +02:00
|
|
|
if [ ! -f /usr/share/shorewall-${VERSION}.bkout/version ]; 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-09-01 00:21:22 +02:00
|
|
|
FIREWALL=$(ls -l /usr/share/shorewall/init | sed 's/^.*> //')
|
2005-09-13 19:13:35 +02:00
|
|
|
restore_file $FIREWALL /usr/share/shorewall-${VERSION}.bkout
|
2005-07-09 06:45:32 +02:00
|
|
|
else
|
2005-09-13 19:13:35 +02:00
|
|
|
restore_file /etc/init.d/shorewall /usr/share/shorewall-${VERSION}.bkout
|
2002-05-01 01:13:15 +02:00
|
|
|
fi
|
|
|
|
|
2005-09-13 19:13:35 +02:00
|
|
|
restore_file /sbin/shorewall /var/lib/shorewall-${VERSION}.bkout
|
2002-05-01 01:13:15 +02:00
|
|
|
|
2005-08-31 23:58:24 +02:00
|
|
|
restore_directory /etc/shorewall
|
|
|
|
restore_directory /usr/share/shorewall
|
|
|
|
restore_directory /var/lib/shorewall
|
2002-05-01 01:13:15 +02:00
|
|
|
|
2005-09-13 19:13:35 +02:00
|
|
|
echo "Shorewall Restored to Version $(cat /usr/share/shorewall/version)"
|
2002-05-01 01:13:15 +02:00
|
|
|
|
|
|
|
|