diff options
author | Olivier Blin <oblin@mandriva.com> | 2008-07-10 00:19:26 +0000 |
---|---|---|
committer | Olivier Blin <oblin@mandriva.com> | 2008-07-10 00:19:26 +0000 |
commit | aba784f91f52384e580ff85297ba7de2a85dafa4 (patch) | |
tree | 45178ba9b69b7786fd6fa50a63d9899b01cef405 | |
parent | 3fb3d34a80cea9866de781493044c39975d5d143 (diff) | |
download | drakx-aba784f91f52384e580ff85297ba7de2a85dafa4.tar drakx-aba784f91f52384e580ff85297ba7de2a85dafa4.tar.gz drakx-aba784f91f52384e580ff85297ba7de2a85dafa4.tar.bz2 drakx-aba784f91f52384e580ff85297ba7de2a85dafa4.tar.xz drakx-aba784f91f52384e580ff85297ba7de2a85dafa4.zip |
finish-install: log in syslog (by not undefining standalone mode, but using no_Window_Manager option instead)
-rw-r--r-- | perl-install/NEWS | 1 | ||||
-rwxr-xr-x | perl-install/standalone/finish-install | 3 |
2 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS index e24d2906d..432ab4dd0 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -3,6 +3,7 @@ Version 10.46 - 10 July 2008 - authentication: o add back fix to force the password to be utf8 (#23273) o fix reading md5/shadow options in /etc/pam.d/system-auth +- finish-install: log in syslog Version 10.45 - 09 July 2008 diff --git a/perl-install/standalone/finish-install b/perl-install/standalone/finish-install index ead0b526b..077060fd5 100755 --- a/perl-install/standalone/finish-install +++ b/perl-install/standalone/finish-install @@ -6,8 +6,6 @@ use lib qw(/usr/lib/libDrakX); BEGIN { unshift @::textdomains, 'drakx-net', 'drakx-kbd-mouse-x11', 'drak3d' } use standalone; -$::isStandalone = 0; - use common; use interactive; use any; @@ -25,6 +23,7 @@ network::network::read_net_conf($net); $::isWizard = 1; my $in = 'interactive'->vnew; +$in->{no_Window_Manager} = 1; sub get_conf { my ($name) = @_; |