2010-05-17 00:35:22 +02:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
2010-05-18 01:47:51 +02:00
|
|
|
# ifupdown script for Shorewall-based products
|
2010-05-17 00:35:22 +02:00
|
|
|
#
|
|
|
|
# This program is under GPL [http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt]
|
|
|
|
#
|
|
|
|
# (c) 2010 - Tom Eastep (teastep@shorewall.net)
|
|
|
|
#
|
|
|
|
# Shorewall 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.
|
|
|
|
#
|
|
|
|
|
|
|
|
IFUPDOWN=0
|
|
|
|
PRODUCTS=
|
|
|
|
|
|
|
|
if [ -f /etc/default/shorewall-init ]; then
|
|
|
|
. /etc/default/shorewall-init
|
|
|
|
elif [ -f /etc/sysconfig/shorewall-init ]; then
|
|
|
|
. /etc/sysconfig/shorewall-init
|
|
|
|
fi
|
|
|
|
|
2010-05-17 02:41:09 +02:00
|
|
|
[ "$IFUPDOWN" = 1 -a -n "$PRODUCTS" ] || exit 0
|
2010-05-17 00:35:22 +02:00
|
|
|
|
|
|
|
if [ -f /etc/debian_version ]; then
|
|
|
|
#
|
|
|
|
# Debian ifupdown system
|
|
|
|
#
|
|
|
|
if [ "$MODE" = start ]; then
|
|
|
|
COMMAND=up
|
|
|
|
elif [ "$MODE" = stop ]; then
|
|
|
|
COMMAND=down
|
|
|
|
else
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
|
|
|
case "$PHASE" in
|
|
|
|
pre-*)
|
|
|
|
exit 0
|
|
|
|
;;
|
|
|
|
esac
|
2010-05-18 01:47:51 +02:00
|
|
|
elif [ -f /etc/SuSE-release ]; then
|
|
|
|
#
|
|
|
|
# SuSE ifupdown system
|
|
|
|
#
|
2010-05-18 17:16:31 +02:00
|
|
|
IFACE="$2"
|
2010-05-17 00:35:22 +02:00
|
|
|
|
2010-05-18 01:47:51 +02:00
|
|
|
case $0 in
|
|
|
|
*if-up.d*)
|
|
|
|
COMMAND=up
|
|
|
|
;;
|
|
|
|
*if-down.d*)
|
|
|
|
COMMAND=down
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
exit 0
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
else
|
2010-05-18 19:27:12 +02:00
|
|
|
#
|
|
|
|
# Assume RedHat/Fedora/CentOS/Foobar/...
|
|
|
|
#
|
|
|
|
IFACE="$1"
|
|
|
|
|
|
|
|
case $0 in
|
|
|
|
*ifup*)
|
|
|
|
COMMAND=up
|
|
|
|
;;
|
|
|
|
*ifdown*)
|
|
|
|
COMMAND=down
|
|
|
|
;;
|
2010-05-18 22:41:01 +02:00
|
|
|
*dispatcher.d*)
|
2010-05-18 21:49:09 +02:00
|
|
|
COMMAND="$2"
|
|
|
|
;;
|
2010-05-18 19:27:12 +02:00
|
|
|
*)
|
|
|
|
exit 0
|
|
|
|
;;
|
|
|
|
esac
|
2010-05-17 00:35:22 +02:00
|
|
|
fi
|
|
|
|
|
2010-05-18 01:47:51 +02:00
|
|
|
for PRODUCT in $PRODUCTS; do
|
|
|
|
VARDIR=/var/lib/$PRODUCT
|
|
|
|
[ -f /etc/$PRODUCT/vardir ] && . /etc/$PRODUCT/vardir
|
|
|
|
if [ -x $VARDIR/firewall ]; then
|
|
|
|
$VARDIR/firewall -V0 $COMMAND $IFACE
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
2010-05-17 00:35:22 +02:00
|
|
|
exit 0
|