diff options
-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) = @_; |