diff options
author | Francois Pons <fpons@mandriva.com> | 2000-11-23 18:17:46 +0000 |
---|---|---|
committer | Francois Pons <fpons@mandriva.com> | 2000-11-23 18:17:46 +0000 |
commit | 440207e11b86fa9756b9b7f2454ab716e756387f (patch) | |
tree | 6073a7beac7b62240b0060d3f93ccd87c3944f62 | |
parent | 81dcd71c5587aeb713861f4efba3b8250c8df685 (diff) | |
download | drakx-440207e11b86fa9756b9b7f2454ab716e756387f.tar drakx-440207e11b86fa9756b9b7f2454ab716e756387f.tar.gz drakx-440207e11b86fa9756b9b7f2454ab716e756387f.tar.bz2 drakx-440207e11b86fa9756b9b7f2454ab716e756387f.tar.xz drakx-440207e11b86fa9756b9b7f2454ab716e756387f.zip |
added tempory fix for initscripts %post.
-rw-r--r-- | perl-install/install_steps.pm | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/perl-install/install_steps.pm b/perl-install/install_steps.pm index e07cba7ac..55be9a166 100644 --- a/perl-install/install_steps.pm +++ b/perl-install/install_steps.pm @@ -404,6 +404,15 @@ Consoles 1,3,4,7 may also contain interesting information"; any::writeandclean_ldsoconf($o->{prefix}); log::l("before install packages, after writing ld.so.conf"); + #- make sure the services of initscripts have been enabled (or a catastrophic dead will occur). + #- to keep while initscript not cleaned. + 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"); + #- remove the nasty acon... run_program::rooted($o->{prefix}, "chkconfig", "--del", "acon") unless $ENV{LANGUAGE} =~ /ar/; |