diff options
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/services.pm | 2 |
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); } |