diff options
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/NEWS | 2 | ||||
-rw-r--r-- | perl-install/services.pm | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS index 62e3819d0..6493b6642 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -4,6 +4,8 @@ (*old* bug!) - draksplash: o fix reading grub conf (#39346) +- services backend: + o handle services with "-" as default chkconfig level in more places Version 10.20 - 25 March 2008 diff --git a/perl-install/services.pm b/perl-install/services.pm index 705f4eae3..82115c82f 100644 --- a/perl-install/services.pm +++ b/perl-install/services.pm @@ -383,12 +383,12 @@ sub starts_on_boot { sub start_service_on_boot ($) { my ($service) = @_; - run_program::rooted($::prefix, "/sbin/chkconfig", "--add", $service); + _set_service($service, 1); } sub do_not_start_service_on_boot ($) { my ($service) = @_; - run_program::rooted($::prefix, "/sbin/chkconfig", "--del", $service); + _set_service($service, 0); } sub enable { |