diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2004-02-16 16:49:53 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2004-02-16 16:49:53 +0000 |
commit | ba8e8f1212675679d40009210454f62d26db2182 (patch) | |
tree | b6cb9683eb255fde720be4e129857d90aa30c97c /perl-install/standalone/drakpxe | |
parent | 2fdb9db2e8839891d304a31c21f83434048220d6 (diff) | |
download | drakx-ba8e8f1212675679d40009210454f62d26db2182.tar drakx-ba8e8f1212675679d40009210454f62d26db2182.tar.gz drakx-ba8e8f1212675679d40009210454f62d26db2182.tar.bz2 drakx-ba8e8f1212675679d40009210454f62d26db2182.tar.xz drakx-ba8e8f1212675679d40009210454f62d26db2182.zip |
do not abuse global namespace
Diffstat (limited to 'perl-install/standalone/drakpxe')
-rwxr-xr-x | perl-install/standalone/drakpxe | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/standalone/drakpxe b/perl-install/standalone/drakpxe index 0fd55fe7b..c564995cb 100755 --- a/perl-install/standalone/drakpxe +++ b/perl-install/standalone/drakpxe @@ -32,7 +32,7 @@ use c; $::isInstall and die "Not supported during install.\n"; $::Wizard_pix_up = "drakgw.png"; #- to change ? keep existing one, nobody will see (too late) ;-) -$::direct = grep { /-direct/ } @ARGV; +my $direct = grep { /-direct/ } @ARGV; # @@ -108,7 +108,7 @@ begin: $::Wizard_no_previous = 1; -$::direct or $in->ask_okcancel(N("Installation Server Configuration"), +$direct or $in->ask_okcancel(N("Installation Server Configuration"), N("You are about to configure your computer to install a PXE server as a DHCP server and a TFTP server to build an installation server. With that feature, other computers on your local network will be installable using this computer as source. |