2008-12-07 19:17:26 +01:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
2015-07-28 19:59:11 +02:00
|
|
|
# Shorewall Packet Filtering Firewall Control Program - V5.0
|
2008-12-07 19:17:26 +01:00
|
|
|
#
|
2015-07-28 19:59:11 +02:00
|
|
|
# (c) 1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2014,2015 -
|
2011-05-23 18:51:51 +02:00
|
|
|
# Tom Eastep (teastep@shorewall.net)
|
2008-12-07 19:17:26 +01:00
|
|
|
#
|
|
|
|
# Shorewall documentation is available at http://www.shorewall.net
|
|
|
|
#
|
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
|
|
|
################################################################################################
|
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
|
|
|
|
2012-09-04 16:36:47 +02:00
|
|
|
g_program=$PRODUCT
|
2012-04-02 21:39:49 +02:00
|
|
|
g_sharedir="$SHAREDIR"/shorewall
|
|
|
|
g_confdir="$CONFDIR"/shorewall
|
2012-03-24 21:05:39 +01:00
|
|
|
g_readrc=1
|
|
|
|
|
2012-04-02 21:39:49 +02:00
|
|
|
. $g_sharedir/lib.cli
|
2008-12-07 19:17:26 +01:00
|
|
|
|
2011-12-20 00:52:42 +01:00
|
|
|
shorewall_cli $@
|