diff options
author | Florent Villard <warly@mandriva.com> | 2003-08-22 21:29:12 +0000 |
---|---|---|
committer | Florent Villard <warly@mandriva.com> | 2003-08-22 21:29:12 +0000 |
commit | de6e60435383dbebc186933d54b1b9bc68aba118 (patch) | |
tree | 0f8111bf3792d88d39d64fde0793e20dd7305607 /proxy_wizard | |
parent | 150bc87396011253a541ca0ad32250e926ab0ecc (diff) | |
download | drakwizard-de6e60435383dbebc186933d54b1b9bc68aba118.tar drakwizard-de6e60435383dbebc186933d54b1b9bc68aba118.tar.gz drakwizard-de6e60435383dbebc186933d54b1b9bc68aba118.tar.bz2 drakwizard-de6e60435383dbebc186933d54b1b9bc68aba118.tar.xz drakwizard-de6e60435383dbebc186933d54b1b9bc68aba118.zip |
fix the IFCFG reset of PATH env var which breaks packages installation
Diffstat (limited to 'proxy_wizard')
-rwxr-xr-x | proxy_wizard/Squid.pm | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/proxy_wizard/Squid.pm b/proxy_wizard/Squid.pm index d20194a1..3c1d87d9 100755 --- a/proxy_wizard/Squid.pm +++ b/proxy_wizard/Squid.pm @@ -2,6 +2,7 @@ # Drakwizard +# Copyright (C) 2002 Arnaud Desmons <adesmons@mandrakesoft.com> # Copyright (C) 2003 Florent Villard <warly@mandrakesoft.com> # # This program is free software; you can redistribute it and/or modify @@ -18,16 +19,13 @@ # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -package Squid; -use lib qw(/usr/lib/libDrakX); +package MDK::Wizard::Squid; use strict; -use standalone; -use interactive; use common; -require "MDK/Wizard/IFCFG.pm"; +require MDK::Wizard::Wizcommon; -my $net = new IFCFG; +my $wiz = new MDK::Wizard::Wizcommon; my $o = { name => 'configuration wizard', |