summaryrefslogtreecommitdiffstats
path: root/perl-install
diff options
context:
space:
mode:
Diffstat (limited to 'perl-install')
-rw-r--r--perl-install/services.pm6
1 files changed, 2 insertions, 4 deletions
diff --git a/perl-install/services.pm b/perl-install/services.pm
index 86b3a35c9..de2a961ef 100644
--- a/perl-install/services.pm
+++ b/perl-install/services.pm
@@ -337,14 +337,12 @@ sub starts_on_boot {
sub start_service_on_boot ($) {
my ($service) = @_;
- run_program::rooted($::prefix, "/sbin/chkconfig", "--add", $service)
- or return 0;
- return 1;
+ run_program::rooted($::prefix, "/sbin/chkconfig", "--add", $service) ? 1 : 0;
}
sub do_not_start_service_on_boot ($) {
my ($service) = @_;
- run_program::rooted($::prefix, "/sbin/chkconfig", "--del", $service) ? 0 : 1;
+ run_program::rooted($::prefix, "/sbin/chkconfig", "--del", $service) ? 1 : 0;
}
1;