diff options
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'); |