2008-12-07 19:17:26 +01:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
2018-06-23 17:29:01 +02:00
|
|
|
# Shorewall Packet Filtering Firewall Control Program - V5.2
|
2008-12-07 19:17:26 +01:00
|
|
|
#
|
2017-09-18 21:51:27 +02:00
|
|
|
# (c) 1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2014,2015-2017
|
2011-05-23 18:51:51 +02:00
|
|
|
# Tom Eastep (teastep@shorewall.net)
|
2008-12-07 19:17:26 +01:00
|
|
|
#
|
2020-03-26 22:58:35 +01:00
|
|
|
# Shorewall documentation is available at https://shorewall.org
|
2008-12-07 19:17:26 +01:00
|
|
|
#
|
2014-01-04 18:48:27 +01:00
|
|
|
# This program is part of Shorewall.
|
|
|
|
#
|
2008-12-07 19:17:26 +01:00
|
|
|
# This program is free software; you can redistribute it and/or modify
|
2014-01-04 18:48:27 +01:00
|
|
|
# it under the terms of the GNU General Public License as published by the
|
|
|
|
# Free Software Foundation, either version 2 of the license or, at your
|
|
|
|
# option, any later version.
|
2008-12-07 19:17:26 +01:00
|
|
|
#
|
|
|
|
# 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
|
2014-01-04 18:48:27 +01:00
|
|
|
# along with this program; if not, see <http://www.gnu.org/licenses/>.
|
2008-12-07 19:17:26 +01:00
|
|
|
#
|
2011-12-03 19:59:01 +01:00
|
|
|
# For a list of supported commands, type 'shorewall help' or 'shorewall6 help'
|
2008-12-07 19:17:26 +01:00
|
|
|
#
|
2011-05-23 23:36:21 +02:00
|
|
|
################################################################################################
|
2017-09-18 21:51:27 +02:00
|
|
|
#
|
|
|
|
# Default product is Shorewall. PRODUCT will be set based on $0 and on passed -[46] and -l
|
|
|
|
# options
|
|
|
|
#
|
2012-09-04 16:36:47 +02:00
|
|
|
PRODUCT=shorewall
|
2012-01-02 05:30:09 +01:00
|
|
|
|
2012-03-30 21:02:25 +02:00
|
|
|
#
|
2012-04-07 18:07:07 +02:00
|
|
|
# This is modified by the installer when ${SHAREDIR} != /usr/share
|
2012-03-30 21:02:25 +02:00
|
|
|
#
|
|
|
|
. /usr/share/shorewall/shorewallrc
|
2012-03-24 21:05:39 +01:00
|
|
|
|
2016-11-20 02:17:03 +01:00
|
|
|
g_basedir=${SHAREDIR}/shorewall
|
2012-03-24 21:05:39 +01:00
|
|
|
|
2016-11-20 02:17:03 +01:00
|
|
|
. ${g_basedir}/lib.cli
|
2008-12-07 19:17:26 +01:00
|
|
|
|
2011-12-20 00:52:42 +01:00
|
|
|
shorewall_cli $@
|