From cee5fd472ac4d8f04bc9ec5a69a1a5f0f38092ed Mon Sep 17 00:00:00 2001 From: Olivier Blin Date: Thu, 27 Mar 2008 09:43:42 +0000 Subject: add a FIXME note about services with no chkconfig line and with no Default-Start levels in LSB header --- perl-install/services.pm | 1 + 1 file changed, 1 insertion(+) (limited to 'perl-install/services.pm') diff --git a/perl-install/services.pm b/perl-install/services.pm index 99cfa1874..3fe024ae8 100644 --- a/perl-install/services.pm +++ b/perl-install/services.pm @@ -264,6 +264,7 @@ sub _set_service { my ($service, $enable) = @_; my $script = "/etc/rc.d/init.d/$service"; run_program::rooted($::prefix, "chkconfig", $enable ? "--add" : "--del", $service); + #- FIXME: handle services with no chkconfig line and with no Default-Start levels in LSB header if ($enable && cat_("$::prefix$script") =~ /^#\s+chkconfig:\s+-/m) { run_program::rooted($::prefix, "chkconfig", "--level", "35", $service, "on"); } -- cgit v1.2.1