2006-06-03 17:16:21 +02:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
|
|
|
# Script to back uninstall Shoreline Firewall
|
|
|
|
#
|
2007-09-08 18:09:51 +02:00
|
|
|
# This program is under GPL [http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt]
|
2006-06-03 17:16:21 +02:00
|
|
|
#
|
2011-05-23 19:06:56 +02:00
|
|
|
# (c) 2000-2011 - Tom Eastep (teastep@shorewall.net)
|
2006-06-03 17:16:21 +02:00
|
|
|
#
|
|
|
|
# Shorewall documentation is available at http://shorewall.sourceforge.net
|
|
|
|
#
|
|
|
|
# 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
|
2007-09-08 18:09:51 +02:00
|
|
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
2006-06-03 17:16:21 +02:00
|
|
|
#
|
|
|
|
# Usage:
|
|
|
|
#
|
|
|
|
# You may only use this script to uninstall the version
|
|
|
|
# shown below. Simply run this script to remove Shorewall Firewall
|
|
|
|
|
2011-07-13 16:10:07 +02:00
|
|
|
VERSION=xxx #The Build script inserts the actual version
|
2006-06-03 17:16:21 +02:00
|
|
|
|
|
|
|
usage() # $1 = exit status
|
|
|
|
{
|
|
|
|
ME=$(basename $0)
|
|
|
|
echo "usage: $ME"
|
|
|
|
exit $1
|
|
|
|
}
|
|
|
|
|
|
|
|
qt()
|
|
|
|
{
|
|
|
|
"$@" >/dev/null 2>&1
|
|
|
|
}
|
|
|
|
|
2012-03-24 21:05:39 +01:00
|
|
|
split() {
|
|
|
|
local ifs
|
|
|
|
ifs=$IFS
|
|
|
|
IFS=:
|
|
|
|
set -- $1
|
|
|
|
echo $*
|
|
|
|
IFS=$ifs
|
|
|
|
}
|
|
|
|
|
|
|
|
mywhich() {
|
|
|
|
local dir
|
|
|
|
|
|
|
|
for dir in $(split $PATH); do
|
|
|
|
if [ -x $dir/$1 ]; then
|
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
|
|
|
return 2
|
2006-06-03 17:16:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
remove_file() # $1 = file to restore
|
|
|
|
{
|
|
|
|
if [ -f $1 -o -L $1 ] ; then
|
|
|
|
rm -f $1
|
|
|
|
echo "$1 Removed"
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2012-03-27 01:19:40 +02:00
|
|
|
if [ -f ./.shorewallrc ]; then
|
|
|
|
. ./.shorewallrc || exit 1
|
|
|
|
elif [ -f ~/.shorewallrc ]; then
|
|
|
|
. ~/.shorewallrc || exit 1
|
|
|
|
elif [ -r /root/.shorewallrc ]; then
|
|
|
|
. /root/.shorewallrc || exit 1
|
|
|
|
elif [ -r /.shorewallrc ]; then
|
|
|
|
. /root/.shorewallrc || exit 1
|
|
|
|
elif - -f ${SHOREAWLLRC_HOME}/.shorewallrc; then
|
|
|
|
. ${SHOREWALLRC_HOME}/.shorewallrc || exit 1
|
2012-03-24 21:05:39 +01:00
|
|
|
else
|
|
|
|
[ -n "${LIBEXEC:=/usr/share}" ]
|
|
|
|
[ -n "${PERLLIB:=/usr/share/shorewall}" ]
|
|
|
|
[ -n "${CONFDIR:=/etc}" ]
|
|
|
|
|
|
|
|
if [ -z "$SYSCONFDIR" ]; then
|
|
|
|
if [ -d /etc/default ]; then
|
|
|
|
SYSCONFDIR=/etc/default
|
|
|
|
else
|
|
|
|
SYSCONFDIR=/etc/sysconfig
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
[ -n "${SBINDIR:=/sbin}" ]
|
|
|
|
[ -n "${SHAREDIR:=/usr/share}" ]
|
|
|
|
[ -n "${VARDIR:=/var/lib}" ]
|
|
|
|
[ -n "${INITFILE:=shorewall}" ]
|
|
|
|
[ -n "${INITDIR:=/etc/init.d}" ]
|
|
|
|
[ -n "${MANDIR:=/usr/share/man}" ]
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -f ${SHAREDIR}/shorewall-lite/version ]; then
|
|
|
|
INSTALLED_VERSION="$(cat ${SHAREDIR}/shorewall-lite/version)"
|
2006-06-03 17:16:21 +02:00
|
|
|
if [ "$INSTALLED_VERSION" != "$VERSION" ]; then
|
2007-07-21 16:03:37 +02:00
|
|
|
echo "WARNING: Shorewall Lite Version $INSTALLED_VERSION is installed"
|
2006-06-03 17:16:21 +02:00
|
|
|
echo " and this is the $VERSION uninstaller."
|
|
|
|
VERSION="$INSTALLED_VERSION"
|
|
|
|
fi
|
|
|
|
else
|
2007-07-21 16:03:37 +02:00
|
|
|
echo "WARNING: Shorewall Lite Version $VERSION is not installed"
|
2006-06-03 17:16:21 +02:00
|
|
|
VERSION=""
|
|
|
|
fi
|
|
|
|
|
2007-07-21 16:03:37 +02:00
|
|
|
echo "Uninstalling Shorewall Lite $VERSION"
|
2006-06-03 17:16:21 +02:00
|
|
|
|
2012-03-24 21:05:39 +01:00
|
|
|
if qt iptables -L shorewall -n && [ ! -f ${SBINDIR}/shorewall ]; then
|
|
|
|
shorewall-lite clear
|
2006-06-03 17:16:21 +02:00
|
|
|
fi
|
|
|
|
|
2012-03-24 21:05:39 +01:00
|
|
|
if [ -L ${SHAREDIR}/shorewall-lite/init ]; then
|
|
|
|
FIREWALL=$(readlink -m -q ${SHAREDIR}/shorewall-lite/init)
|
|
|
|
elIF [ -n "$INITFILE" ]; then
|
|
|
|
FIREWALL=${INITDIR}/${INITFILE}
|
2006-06-03 17:16:21 +02:00
|
|
|
fi
|
|
|
|
|
2012-03-24 21:05:39 +01:00
|
|
|
if [ -f "$FIREWALL" ]; then
|
|
|
|
if mywhich updaterc.d ; then
|
2011-01-16 22:09:02 +01:00
|
|
|
updaterc.d shorewall-lite remove
|
2012-03-24 21:05:39 +01:00
|
|
|
elif if mywhich insserv ; then
|
2006-06-03 17:16:21 +02:00
|
|
|
insserv -r $FIREWALL
|
2012-03-24 21:05:39 +01:00
|
|
|
elif [ mywhich chkconfig ; then
|
2006-06-03 17:16:21 +02:00
|
|
|
chkconfig --del $(basename $FIREWALL)
|
2012-03-24 21:05:39 +01:00
|
|
|
elif mywhich systemctl ; then
|
2011-08-23 23:07:44 +02:00
|
|
|
systemctl disable shorewall-lite
|
2006-06-03 17:16:21 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
remove_file $FIREWALL
|
|
|
|
fi
|
|
|
|
|
2012-03-24 21:05:39 +01:00
|
|
|
rm -f ${SBINDIR}/shorewall-lite
|
2006-06-03 17:16:21 +02:00
|
|
|
|
2012-03-24 21:05:39 +01:00
|
|
|
rm -rf ${SBINDIR}/shorewall-lite
|
|
|
|
rm -rf ${VARDIR}/shorewall-lite
|
|
|
|
rm -rf ${SHAREDIR}/shorewall-lite
|
2011-04-17 20:20:26 +02:00
|
|
|
rm -rf ${LIBEXEC}/shorewall-lite
|
2012-03-24 21:05:39 +01:00
|
|
|
rm -f ${CONFDIR}/logrotate.d/shorewall-lite
|
|
|
|
[ -n "$SYSTEMD" ] && rm -f ${SYSTEMD}/shorewall-lite.service
|
2006-06-03 17:16:21 +02:00
|
|
|
|
2011-01-16 22:09:02 +01:00
|
|
|
echo "Shorewall Lite Uninstalled"
|
2006-06-03 17:16:21 +02:00
|
|
|
|
|
|
|
|