From 8e75979d0b43aefcc21ff5313a8ff94ed91bd3dd Mon Sep 17 00:00:00 2001 From: damien Date: Wed, 21 Mar 2001 01:17:46 +0000 Subject: new tinyfirewall conf tool --- perl-install/standalone/tinyfirewall | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100755 perl-install/standalone/tinyfirewall (limited to 'perl-install/standalone/tinyfirewall') diff --git a/perl-install/standalone/tinyfirewall b/perl-install/standalone/tinyfirewall new file mode 100755 index 000000000..f527f58df --- /dev/null +++ b/perl-install/standalone/tinyfirewall @@ -0,0 +1,32 @@ +#!/usr/bin/perl + +# DrakNet + +# Copyright (C) 1999 MandrakeSoft (damien@mandrakesoft.com) +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2, or (at your option) +# any later version. +# +# 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +use lib qw(/usr/lib/libDrakX); +use interactive; +use standalone; +use tinyfirewall; + +$::isEmbedded = ($::XID, $::CCPID) = "@ARGV" =~ /--embedded (\w+) (\w+)/; +$::isWizard = "@ARGV" =~ /--wizard/; + +local $_ = join '', @ARGV; + +my $in = vnew interactive('su'); +tinyfirewall::main($in); -- cgit v1.2.1