diff options
author | Francois Pons <fpons@mandriva.com> | 1999-11-09 21:30:51 +0000 |
---|---|---|
committer | Francois Pons <fpons@mandriva.com> | 1999-11-09 21:30:51 +0000 |
commit | 2f45ca11b6e3f1e74f2ba8a7bf65ca37b2c9bd08 (patch) | |
tree | 3a0562bafbe888abe94f95174174a6715d3adc25 | |
parent | d92b13883fbf6acce6c39cb76484accc56bce0c3 (diff) | |
download | drakx-2f45ca11b6e3f1e74f2ba8a7bf65ca37b2c9bd08.tar drakx-2f45ca11b6e3f1e74f2ba8a7bf65ca37b2c9bd08.tar.gz drakx-2f45ca11b6e3f1e74f2ba8a7bf65ca37b2c9bd08.tar.bz2 drakx-2f45ca11b6e3f1e74f2ba8a7bf65ca37b2c9bd08.tar.xz drakx-2f45ca11b6e3f1e74f2ba8a7bf65ca37b2c9bd08.zip |
*** empty log message ***
-rw-r--r-- | perl-install/Xconfigurator.pm | 2 | ||||
-rw-r--r-- | perl-install/install2.pm | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/Xconfigurator.pm b/perl-install/Xconfigurator.pm index a90ee8e5a..2e13138fa 100644 --- a/perl-install/Xconfigurator.pm +++ b/perl-install/Xconfigurator.pm @@ -754,6 +754,6 @@ _("I can set up your computer to automatically start X upon booting. Would you like X to start when you reboot?"), 1); rewriteInittab($run ? 5 : 3) unless $::testing; - run_program::rooted($prefix, "chkconfig", "--level", "5", "gpm", "off") if $o->{mouse}{device} =~ /ttyS/; + run_program::rooted($prefix, "chkconfig", "--del", "gpm") if $o->{mouse}{device} =~ /ttyS/; } } diff --git a/perl-install/install2.pm b/perl-install/install2.pm index e673e40e9..d64272c97 100644 --- a/perl-install/install2.pm +++ b/perl-install/install2.pm @@ -48,7 +48,7 @@ my @installSteps = ( formatPartitions => [ __("Format partitions"), 1, -1, 0, "partitionDisks" ], choosePackages => [ __("Choose packages to install"), 1, 1, 1, "selectPath" ], doInstallStep => [ __("Install system"), 1, -1, 0, ["formatPartitions", "selectPath"] ], - miscellaneous => [ __("Miscellaneous"), 1, 1, 1 ], + miscellaneous => [ __("Miscellaneous"), 1, 1, 1 , "formatPartitions" ], configureNetwork => [ __("Configure networking"), 1, 1, 1, "formatPartitions" ], configureTimezone => [ __("Configure timezone"), 1, 1, 0, "doInstallStep" ], #- configureServices => [ __("Configure services"), 0, 0, 0 ], |