mirror of
https://gitlab.com/shorewall/code.git
synced 2024-11-07 16:24:01 +01:00
5174fe0161
Signed-off-by: Tom Eastep <teastep@shorewall.net>
146 lines
3.1 KiB
Bash
Executable File
146 lines
3.1 KiB
Bash
Executable File
#!/bin/sh
|
|
|
|
### BEGIN INIT INFO
|
|
# Provides: shorewall-lite
|
|
# Required-Start: $network $remote_fs
|
|
# Required-Stop: $network $remote_fs
|
|
# Default-Start: S
|
|
# Default-Stop: 0 1 6
|
|
# Short-Description: Configure the firewall at boot time
|
|
# Description: Configure the firewall according to the rules specified in
|
|
# /etc/shorewall-lite
|
|
### END INIT INFO
|
|
|
|
. /lib/lsb/init-functions
|
|
|
|
SRWL='/sbin/shorewall -l'
|
|
SRWL_OPTS="-tvv"
|
|
test -n ${INITLOG:=/var/log/shorewall-lite-init.log}
|
|
|
|
[ "$INITLOG" = "/dev/null" ] && SHOREWALL_INIT_SCRIPT=1 || SHOREWALL_INIT_SCRIPT=0
|
|
|
|
export SHOREWALL_INIT_SCRIPT
|
|
test -x $SRWL || exit 0
|
|
test -x $WAIT_FOR_IFUP || exit 0
|
|
test -n "$INITLOG" || {
|
|
echo "INITLOG cannot be empty, please configure $0" ;
|
|
exit 1;
|
|
}
|
|
|
|
if [ "$(id -u)" != "0" ]
|
|
then
|
|
echo "You must be root to start, stop or restart \"Shorewall firewall\"."
|
|
exit 1
|
|
fi
|
|
|
|
echo_notdone () {
|
|
|
|
if [ "$INITLOG" = "/dev/null" ] ; then
|
|
echo "not done."
|
|
else
|
|
echo "not done (check $INITLOG)."
|
|
fi
|
|
|
|
exit 1
|
|
}
|
|
|
|
not_configured () {
|
|
echo "#### WARNING ####"
|
|
echo "the firewall won't be started/stopped unless it is configured"
|
|
if [ "$1" != "stop" ]
|
|
then
|
|
echo ""
|
|
echo "Please read about Debian specific customization in"
|
|
echo "/usr/share/doc/shorewall/README.Debian.gz."
|
|
fi
|
|
echo "#################"
|
|
exit 0
|
|
}
|
|
|
|
#
|
|
# The installer may alter this
|
|
#
|
|
. /usr/share/shorewall/shorewallrc
|
|
|
|
# parse the shorewall params file in order to use params in
|
|
# /etc/default/shorewall
|
|
|
|
if [ -f "$CONFDIR/shorewall-lite/params" ]
|
|
then
|
|
. $CONFDIR/shorewall-lite/params
|
|
fi
|
|
|
|
# check if shorewall is configured or not
|
|
if [ -f "$SYSCONFDIR/shorewall-lite" ]
|
|
then
|
|
. $SYSCONFDIR/shorewall-lite
|
|
SRWL_OPTS="$SRWL_OPTS $OPTIONS"
|
|
if [ "$startup" != "1" ]
|
|
then
|
|
not_configured
|
|
fi
|
|
else
|
|
not_configured
|
|
fi
|
|
|
|
# start the firewall
|
|
shorewall_start () {
|
|
printf "Starting \"Shorewall firewall\": "
|
|
$SRWL $SRWL_OPTS start $STARTOPTIONS >> $INITLOG 2>&1 && echo "done." || echo_notdone
|
|
return 0
|
|
}
|
|
|
|
# stop the firewall
|
|
shorewall_stop () {
|
|
if [ "$SAFESTOP" = 1 ]; then
|
|
printf "Stopping \"Shorewall Lite firewall\": "
|
|
$SRWL $SRWL_OPTS stop >> $INITLOG 2>&1 && echo "done." || echo_notdone
|
|
else
|
|
printf "Clearing all \"Shorewall Lite firewall\" rules: "
|
|
$SRWL $SRWL_OPTS clear >> $INITLOG 2>&1 && echo "done." || echo_notdone
|
|
fi
|
|
return 0
|
|
}
|
|
|
|
# restart the firewall
|
|
shorewall_restart () {
|
|
printf "Restarting \"Shorewall firewall\": "
|
|
$SRWL $SRWL_OPTS restart $RESTARTOPTIONS >> $INITLOG 2>&1 && echo "done." || echo_notdone
|
|
return 0
|
|
}
|
|
|
|
# refresh the firewall
|
|
shorewall_refresh () {
|
|
printf "Refreshing \"Shorewall firewall\": "
|
|
$SRWL $SRWL_OPTS refresh >> $INITLOG 2>&1 && echo "done." || echo_notdone
|
|
return 0
|
|
}
|
|
|
|
# status of the firewall
|
|
shorewall_status () {
|
|
$SRWL $SRWL_OPTS status && exit 0 || exit $?
|
|
}
|
|
|
|
case "$1" in
|
|
start)
|
|
shorewall_start
|
|
;;
|
|
stop)
|
|
shorewall_stop
|
|
;;
|
|
refresh)
|
|
shorewall_refresh
|
|
;;
|
|
force-reload|restart)
|
|
shorewall_restart
|
|
;;
|
|
status)
|
|
shorewall_status
|
|
;;
|
|
*)
|
|
echo "Usage: /etc/init.d/shorewall-lite {start|stop|refresh|restart|force-reload|status}"
|
|
exit 1
|
|
esac
|
|
|
|
exit 0
|