2008-12-07 19:17:26 +01:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
2012-01-02 16:43:13 +01:00
|
|
|
# Shorewall Packet Filtering Firewall Control Program - V4.5
|
2008-12-07 19:17:26 +01:00
|
|
|
#
|
|
|
|
# This program is under GPL [http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt]
|
|
|
|
#
|
2011-05-23 18:51:51 +02:00
|
|
|
# (c) 1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011 -
|
|
|
|
# Tom Eastep (teastep@shorewall.net)
|
2008-12-07 19:17:26 +01:00
|
|
|
#
|
|
|
|
# Shorewall documentation is available at http://www.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.
|
|
|
|
#
|
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-01-02 05:30:09 +01:00
|
|
|
g_program=shorewall
|
|
|
|
|
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
|
|
|
|
|
|
|
g_libexec="$LIBEXECDIR"
|
2012-04-02 21:39:49 +02:00
|
|
|
g_sharedir="$SHAREDIR"/shorewall
|
2012-03-24 21:05:39 +01:00
|
|
|
g_sbindir="$SBINDIR"
|
|
|
|
g_perllib="$PERLLIBDIR"
|
2012-04-15 18:43:41 +02:00
|
|
|
g_vardir="$VARDIR"
|
2012-04-02 21:39:49 +02:00
|
|
|
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 $@
|