diff options
author | Francois Pons <fpons@mandriva.com> | 2001-01-03 17:32:55 +0000 |
---|---|---|
committer | Francois Pons <fpons@mandriva.com> | 2001-01-03 17:32:55 +0000 |
commit | ed3b2f0c1f158c4e0d237524275bcf422774fa96 (patch) | |
tree | 7c364b6aa8cfd53e042f5192fc9221c59aa3f7b2 | |
parent | d4886ab0e77dc098d6048c6ab42a7e6d7fc654fd (diff) | |
download | drakx-ed3b2f0c1f158c4e0d237524275bcf422774fa96.tar drakx-ed3b2f0c1f158c4e0d237524275bcf422774fa96.tar.gz drakx-ed3b2f0c1f158c4e0d237524275bcf422774fa96.tar.bz2 drakx-ed3b2f0c1f158c4e0d237524275bcf422774fa96.tar.xz drakx-ed3b2f0c1f158c4e0d237524275bcf422774fa96.zip |
fixed some other services to start in case something gets wrong,
this fixes some deadlock on upgrade from 7.0.
-rw-r--r-- | perl-install/install_steps.pm | 5 |
1 files changed, 5 insertions, 0 deletions
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 |