From 171c6fe9967f23424a8c2da2470f63d15f3bcadd Mon Sep 17 00:00:00 2001 From: Magnus Enger Date: Mon, 30 Sep 2019 15:01:35 +0200 Subject: [PATCH] Bug 23700 - Fix output of koha-plack --restart Content-Type: text/plain; charset=utf-8 To test: - Run "sudo koha-plack restart kohadev" and verify the output is out of line. - Apply the patch - If you are on e.g. kohadevbox you need to copy koha-plack to /usr/sbin/ thus: sudo cp debian/scripts/koha-plack /usr/sbin/koha-plack - Run "sudo koha-plack restart kohadev" again and check that you get two lines of output, nicely aligned with the "OK" inside the square brackets. Signed-off-by: Jesse Maseto Signed-off-by: Marcel de Rooy --- debian/scripts/koha-plack | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/debian/scripts/koha-plack b/debian/scripts/koha-plack index b14bac5f9f..e541d44178 100755 --- a/debian/scripts/koha-plack +++ b/debian/scripts/koha-plack @@ -162,14 +162,7 @@ restart_plack() local PIDFILE="/var/run/koha/${instancename}/plack.pid" if is_plack_running ${instancename}; then - - log_daemon_msg "Restarting Plack daemon for ${instancename}" - - if stop_plack $instancename && start_plack $instancename; then - log_end_msg 0 - else - log_end_msg 1 - fi + stop_plack $instancename && start_plack $instancename else log_daemon_msg "Error: Plack not running for ${instancename}" log_end_msg 1 -- 2.11.0