diff options
-rw-r--r-- | docs/HACKING | 2 | ||||
-rw-r--r-- | perl-install/install2.pm | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/HACKING b/docs/HACKING index d7fa2bad0..e427d173a 100644 --- a/docs/HACKING +++ b/docs/HACKING @@ -109,7 +109,7 @@ The comments written with #- are automatically stripped out at install. --------------------------------------------------------------------------- testing all: - go to the perl-install directory and execute ./install2 --test + go to the perl-install directory and execute ./install2 --testing NEVER execute DrakX as root! You might need to allow all users to read the block devices of your hard-disks, though (chmod a+w diff --git a/perl-install/install2.pm b/perl-install/install2.pm index 392a25df9..5f56eb838 100644 --- a/perl-install/install2.pm +++ b/perl-install/install2.pm @@ -392,7 +392,7 @@ sub main { askdisplay => sub { print "Please enter the X11 display to perform the install on ? "; $o->{display} = chomp_(scalar(<STDIN>)) }, security => sub { $o->{security} = $v }, noauto => sub { $::noauto = 1 }, - test => sub { $::testing = 1 }, + testing => sub { $::testing = 1 }, patch => sub { $patch = 1 }, defcfg => sub { $cfg = $v }, recovery => sub { $::recovery = 1 }, |