diff options
author | damien <damien@mandriva.com> | 2001-03-21 01:17:46 +0000 |
---|---|---|
committer | damien <damien@mandriva.com> | 2001-03-21 01:17:46 +0000 |
commit | 8e75979d0b43aefcc21ff5313a8ff94ed91bd3dd (patch) | |
tree | ffe7695cdb716a0d31c5379f858bc69f7ed1fc98 /perl-install/standalone/tinyfirewall | |
parent | a2b09c2a8f87e554d565f74f45d612e142b73708 (diff) | |
download | drakx-backup-do-not-use-8e75979d0b43aefcc21ff5313a8ff94ed91bd3dd.tar drakx-backup-do-not-use-8e75979d0b43aefcc21ff5313a8ff94ed91bd3dd.tar.gz drakx-backup-do-not-use-8e75979d0b43aefcc21ff5313a8ff94ed91bd3dd.tar.bz2 drakx-backup-do-not-use-8e75979d0b43aefcc21ff5313a8ff94ed91bd3dd.tar.xz drakx-backup-do-not-use-8e75979d0b43aefcc21ff5313a8ff94ed91bd3dd.zip |
new tinyfirewall conf tool
Diffstat (limited to 'perl-install/standalone/tinyfirewall')
-rwxr-xr-x | perl-install/standalone/tinyfirewall | 32 |
1 files changed, 32 insertions, 0 deletions
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); |