summaryrefslogtreecommitdiffstats
path: root/perl-install/services.pm
diff options
context:
space:
mode:
Diffstat (limited to 'perl-install/services.pm')
-rw-r--r--perl-install/services.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/services.pm b/perl-install/services.pm
index 99172f78e..6eab201be 100644
--- a/perl-install/services.pm
+++ b/perl-install/services.pm
@@ -326,7 +326,7 @@ sub _set_service {
sub _run_action {
my ($service, $action) = @_;
if (running_systemd()) {
- run_program::rooted($::prefix, '/bin/systemctl', $action, "$service.service");
+ run_program::rooted($::prefix, '/bin/systemctl', '--no-block', $action, "$service.service");
} else {
run_program::rooted($::prefix, "/etc/rc.d/init.d/$service", $action);
}