From ed3b2f0c1f158c4e0d237524275bcf422774fa96 Mon Sep 17 00:00:00 2001 From: Francois Pons Date: Wed, 3 Jan 2001 17:32:55 +0000 Subject: fixed some other services to start in case something gets wrong, this fixes some deadlock on upgrade from 7.0. --- perl-install/install_steps.pm | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/perl-install/install_steps.pm b/perl-install/install_steps.pm index 11abcb06c..a8c575363 100644 --- a/perl-install/install_steps.pm +++ b/perl-install/install_steps.pm @@ -405,12 +405,17 @@ Consoles 1,3,4,7 may also contain interesting information"; log::l("before install packages, after writing ld.so.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($o->{prefix}, "chkconfig", "--add", "random"); run_program::rooted($o->{prefix}, "chkconfig", "--add", "netfs"); run_program::rooted($o->{prefix}, "chkconfig", "--add", "network"); run_program::rooted($o->{prefix}, "chkconfig", "--add", "rawdevices"); run_program::rooted($o->{prefix}, "chkconfig", "--add", "sound"); run_program::rooted($o->{prefix}, "chkconfig", "--add", "kheader"); + run_program::rooted($o->{prefix}, "chkconfig", "--add", "usb"); + run_program::rooted($o->{prefix}, "chkconfig", "--add", "keytable"); + run_program::rooted($o->{prefix}, "chkconfig", "--add", "syslog"); + run_program::rooted($o->{prefix}, "chkconfig", "--add", "crond"); run_program::rooted($o->{prefix}, "chkconfig", "--add", "portmap"); #- call update-menus at the end of package installation -- cgit v1.2.1