diff options
author | damien <damien@mandriva.com> | 2000-08-23 12:45:03 +0000 |
---|---|---|
committer | damien <damien@mandriva.com> | 2000-08-23 12:45:03 +0000 |
commit | 241962df84172b6c863bb7cf6338112ab3a11c49 (patch) | |
tree | 81e70a57fb1dbc8e8b83195fb76b14cb2e321e0f | |
parent | 501b49604975a8e1d1401ce3b4b60aa88323f3fd (diff) | |
download | drakx-backup-do-not-use-241962df84172b6c863bb7cf6338112ab3a11c49.tar drakx-backup-do-not-use-241962df84172b6c863bb7cf6338112ab3a11c49.tar.gz drakx-backup-do-not-use-241962df84172b6c863bb7cf6338112ab3a11c49.tar.bz2 drakx-backup-do-not-use-241962df84172b6c863bb7cf6338112ab3a11c49.tar.xz drakx-backup-do-not-use-241962df84172b6c863bb7cf6338112ab3a11c49.zip |
corrected type in autologin conf.
-rw-r--r-- | perl-install/Xconfigurator.pm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/perl-install/Xconfigurator.pm b/perl-install/Xconfigurator.pm index 20c8e393f..e40788bce 100644 --- a/perl-install/Xconfigurator.pm +++ b/perl-install/Xconfigurator.pm @@ -1017,9 +1017,9 @@ sub main { my ($o, $allowFB); ($prefix, $o, $in, $allowFB, $isLaptop, $install) = @_; $o ||= {}; - - XF86check_link(''); - XF86check_link('-4'); + + XF86check_link(''); + XF86check_link('-4'); { my $w = $in->wait_message('', _("Preparing X-Window configuration"), 1); @@ -1114,6 +1114,6 @@ If you don't want to use this feature, click on the cancel button."), } any::setAutologin($prefix, $o->{miscellaneous}{autologuser}, "kde"); } - run_program::rooted($prefix, "chkconfig", "--del", "gpm") if $o->{mouse}{device} =~ /ttyS/ && !$::isStandalone; + run_program::rooted($prefix, "chkconfig", "--del", "gpm") if $o->{mouse}{device} =~ /ttyS/ && !$::isStandalone; } } |