diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2002-11-18 08:05:41 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2002-11-18 08:05:41 +0000 |
commit | 0f881eacc9dd3d36486097322c189d0737b56154 (patch) | |
tree | 39cb844678231df9c0e83661ef1f00d783426a55 /perl-install/standalone/diskdrake | |
parent | 7f7d2c8b9facf43f657214501cfe0aef8a3a5481 (diff) | |
download | drakx-0f881eacc9dd3d36486097322c189d0737b56154.tar drakx-0f881eacc9dd3d36486097322c189d0737b56154.tar.gz drakx-0f881eacc9dd3d36486097322c189d0737b56154.tar.bz2 drakx-0f881eacc9dd3d36486097322c189d0737b56154.tar.xz drakx-0f881eacc9dd3d36486097322c189d0737b56154.zip |
- standalone.pm :
o make it be 'use strict' aware
o factorize options managment in one place
- standalone tools :
o they all now support -h|--help -v|--version, ...
o they can add their own options to %standalone::usages
- harddrake : use std --testing/$::testing rather than its own
--test option
Diffstat (limited to 'perl-install/standalone/diskdrake')
-rwxr-xr-x | perl-install/standalone/diskdrake | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/perl-install/standalone/diskdrake b/perl-install/standalone/diskdrake index 1aa72a3df..a0b8cd158 100755 --- a/perl-install/standalone/diskdrake +++ b/perl-install/standalone/diskdrake @@ -36,18 +36,18 @@ use log; use c; -my %options; -my @l = @ARGV; -while (my $e = shift @l) { - my ($option) = $e =~ /--?(.*)/ or next; - if ($option =~ /(.*?)=(.*)/) { - $options{$1} = $2; - } else { - $options{$option} = ''; - } -} -$::expert = defined(delete $options{expert}); -$::testing = defined(delete $options{testing}); +#my %options; +#my @l = @ARGV; +#while (my $e = shift @l) { +" my ($option) = $e =~ /--?(.*)/ or next; +# if ($option =~ /(.*?)=(.*)/) { +# $options{$1} = $2; +# } else { +# $options{$option} = ''; +# } +"} +#$::expert = defined(delete $options{expert}); +#$::testing = defined(delete $options{testing}); my @types = qw(hd nfs smb dav removable fileshare); my ($type, $para) = ('hd', ''); |