2010-05-17 00:35:22 +02:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
|
|
|
# The Shoreline Firewall (Shorewall) Packet Filtering Firewall - V4.4
|
|
|
|
#
|
|
|
|
# This program is under GPL [http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt]
|
|
|
|
#
|
|
|
|
# (c) 2010 - Tom Eastep (teastep@shorewall.net)
|
|
|
|
#
|
|
|
|
# On most distributions, this file should be called /etc/init.d/shorewall.
|
|
|
|
#
|
|
|
|
# Complete documentation is available at http://shorewall.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
|
|
|
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
#
|
|
|
|
### BEGIN INIT INFO
|
|
|
|
# Provides: shorewall-init
|
2010-05-26 01:02:57 +02:00
|
|
|
# Required-Start: $local_fs
|
2010-05-28 19:18:00 +02:00
|
|
|
# X-Start-Before: $network
|
|
|
|
# Required-Stop: $local_fs
|
|
|
|
# X-Stop-After: $network
|
2010-05-17 00:35:22 +02:00
|
|
|
# Default-Start: S
|
|
|
|
# Default-Stop: 0 6
|
|
|
|
# Short-Description: Initialize the firewall at boot time
|
|
|
|
# Description: Place the firewall in a safe state at boot time prior to
|
|
|
|
# bringing up the network
|
|
|
|
### END INIT INFO
|
|
|
|
|
2010-05-26 01:02:57 +02:00
|
|
|
export VERBOSITY=0
|
|
|
|
|
2010-05-17 00:35:22 +02:00
|
|
|
if [ "$(id -u)" != "0" ]
|
|
|
|
then
|
|
|
|
echo "You must be root to start, stop or restart \"Shorewall \"."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo_notdone () {
|
|
|
|
echo "not done."
|
|
|
|
exit 1
|
|
|
|
}
|
|
|
|
|
|
|
|
not_configured () {
|
|
|
|
echo "#### WARNING ####"
|
|
|
|
echo "the firewall won't be initialized unless it is configured"
|
|
|
|
if [ "$1" != "stop" ]
|
|
|
|
then
|
|
|
|
echo ""
|
|
|
|
echo "Please read about Debian specific customization in"
|
|
|
|
echo "/usr/share/doc/shorewall-init/README.Debian.gz."
|
|
|
|
fi
|
|
|
|
echo "#################"
|
|
|
|
exit 0
|
|
|
|
}
|
|
|
|
|
|
|
|
# check if shorewall-init is configured or not
|
|
|
|
if [ -f "/etc/default/shorewall-init" ]
|
|
|
|
then
|
|
|
|
. /etc/default/shorewall-init
|
|
|
|
if [ -z "$PRODUCTS" ]
|
|
|
|
then
|
|
|
|
not_configured
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
not_configured
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Initialize the firewall
|
|
|
|
shorewall_start () {
|
|
|
|
local product
|
2010-05-17 02:41:09 +02:00
|
|
|
local VARDIR
|
2010-05-17 00:35:22 +02:00
|
|
|
|
|
|
|
echo -n "Initializing \"Shorewall-based firewalls\": "
|
|
|
|
for product in $PRODUCTS; do
|
2010-05-17 02:41:09 +02:00
|
|
|
VARDIR=/var/lib/$product
|
|
|
|
[ -f /etc/$product/vardir ] && . /etc/$product/vardir
|
|
|
|
if [ -x ${VARDIR}/firewall ]; then
|
|
|
|
${VARDIR}/firewall stop || echo_notdone
|
2010-05-17 00:35:22 +02:00
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
2010-05-17 02:41:09 +02:00
|
|
|
echo "done."
|
|
|
|
|
2010-05-17 00:35:22 +02:00
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
# Clear the firewall
|
|
|
|
shorewall_stop () {
|
|
|
|
local product
|
2010-05-17 02:41:09 +02:00
|
|
|
local VARDIR
|
2010-05-17 00:35:22 +02:00
|
|
|
|
|
|
|
echo -n "Clearing \"Shorewall-based firewalls\": "
|
|
|
|
for product in $PRODUCTS; do
|
2010-05-17 02:41:09 +02:00
|
|
|
VARDIR=/var/lib/$product
|
|
|
|
[ -f /etc/$product/vardir ] && . /etc/$product/vardir
|
|
|
|
if [ -x ${VARDIR}/firewall ]; then
|
|
|
|
${VARDIR}/firewall clear || echo_notdone
|
2010-05-17 00:35:22 +02:00
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
2010-05-17 02:41:09 +02:00
|
|
|
echo "done."
|
|
|
|
|
2010-05-17 00:35:22 +02:00
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
case "$1" in
|
|
|
|
start)
|
|
|
|
shorewall_start
|
|
|
|
;;
|
|
|
|
stop)
|
|
|
|
shorewall_stop
|
|
|
|
;;
|
2010-05-23 23:10:50 +02:00
|
|
|
reload|force-reload)
|
|
|
|
;;
|
2010-05-17 00:35:22 +02:00
|
|
|
*)
|
2010-05-23 23:10:50 +02:00
|
|
|
echo "Usage: /etc/init.d/shorewall-init {start|stop|reload|force-reload}"
|
2010-05-17 00:35:22 +02:00
|
|
|
exit 1
|
|
|
|
esac
|
|
|
|
|
|
|
|
exit 0
|