diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2002-02-25 19:21:17 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2002-02-25 19:21:17 +0000 |
commit | 1df39c44be98ac12826906818ac003127d0539e5 (patch) | |
tree | 0676c607b116923b7f16769b65fa2636b5afcc61 /perl-install/standalone | |
parent | 8319fa35aaada4e4f2dd8a9dbff89c62caff4059 (diff) | |
download | drakx-1df39c44be98ac12826906818ac003127d0539e5.tar drakx-1df39c44be98ac12826906818ac003127d0539e5.tar.gz drakx-1df39c44be98ac12826906818ac003127d0539e5.tar.bz2 drakx-1df39c44be98ac12826906818ac003127d0539e5.tar.xz drakx-1df39c44be98ac12826906818ac003127d0539e5.zip |
add --testing
Diffstat (limited to 'perl-install/standalone')
-rwxr-xr-x | perl-install/standalone/drakboot | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/perl-install/standalone/drakboot b/perl-install/standalone/drakboot index eb8150b2c..693307552 100755 --- a/perl-install/standalone/drakboot +++ b/perl-install/standalone/drakboot @@ -16,9 +16,10 @@ use c; $::isEmbedded = ($::XID, $::CCPID) = "@ARGV" =~ /--embedded (\w+) (\w+)/; local $_ = join '', @ARGV; -/-h/ and die "usage: drakboot [--expert]\n"; +/-h/ and die "usage: drakboot [--expert] [--testing]\n"; $::expert = /-expert/; +$::testing = /-testing/; my $in = 'interactive'->vnew('su', 'bootloader'); |