diff options
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/install/NEWS | 3 | ||||
-rw-r--r-- | perl-install/install/steps.pm | 5 |
2 files changed, 2 insertions, 6 deletions
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index 9ea590b71..743053c88 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,5 +1,6 @@ -Version 15.52 - 15 May 2013 +- do not enable legacy sysvinit scripts that no longer exist (mga#10084) +Version 15.52 - 15 May 2013 - fix displaying release notes while installing (mga#10087) Version 15.51 - 13 May 2013 diff --git a/perl-install/install/steps.pm b/perl-install/install/steps.pm index c1c4d445c..8e0ce6bbe 100644 --- a/perl-install/install/steps.pm +++ b/perl-install/install/steps.pm @@ -496,11 +496,6 @@ Consoles 1,3,4,7 may also contain interesting information"; #- else if eth0 is not existing, glibc segfaults. substInFile { s/\s*wins// if /^\s*hosts\s*:/ } "$::prefix/etc/nsswitch.conf"; - #- make sure some services have been enabled (or a catastrophic restart will occur). - #- these are normally base package post install scripts or important services to start. - run_program::rooted($::prefix, "chkconfig", "--add", $_) foreach - qw(netfs network rawdevices sound kheader keytable syslog crond portmap); - if ($o->{mouse}{device} =~ /ttyS/) { log::l("disabling gpm for serial mice (does not get along nicely with X)"); run_program::rooted($::prefix, "chkconfig", "--del", "gpm"); |