diff options
-rw-r--r-- | perl-install/NEWS | 4 | ||||
-rw-r--r-- | perl-install/any.pm | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS index 63e2ab020..e79c7ccbb 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -1,3 +1,7 @@ +- drakboot: + o update /etc/sysconfig/desktop since we read it in order to display + previous setting + Version 11.36 - 5 September 2008 - bootloader-config: diff --git a/perl-install/any.pm b/perl-install/any.pm index fe5458f58..8adf030a8 100644 --- a/perl-install/any.pm +++ b/perl-install/any.pm @@ -676,6 +676,10 @@ sub set_window_manager { $l{DESKTOP} = $wm; setVarsInSh("$p_home/.desktop", \%l); } + my $sys_conffile = "$::prefix/etc/sysconfig/desktop"; + my %desktop = getVarsFromSh($sys_conffile); + $desktop{DESKTOP} = $wm; + setVarsInSh($sys_conffile, \%desktop); } sub rotate_log { |