From eab8af5559e47b50cfa893709188cedda93406f1 Mon Sep 17 00:00:00 2001 From: Tomas Cohen Arazi Date: Wed, 30 Jan 2019 09:44:21 -0300 Subject: [PATCH] Bug 22235: (follow-up) Make koha-remove stop SIP server if required Signed-off-by: Kyle M Hall --- debian/scripts/koha-remove | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/debian/scripts/koha-remove b/debian/scripts/koha-remove index 65e7a03f0c..94f5915c8a 100755 --- a/debian/scripts/koha-remove +++ b/debian/scripts/koha-remove @@ -88,6 +88,10 @@ eof if is_plack_running $name; then koha-plack --stop $name || /bin/true fi + # Stop the SIP server if needed + if is_sip_running $name; then + koha-sip --stop $name || /bin/true + fi instancefile=$(get_apache_config_for $name) le_opacdomain=$(letsencrypt_get_opacdomain_for $name) -- 2.17.2 (Apple Git-113)