@@ -, +, @@ instance will still be running. package site, over /usr/sbin/koha-disable. and SIP have been stopped. --- debian/scripts/koha-disable | 6 ++++++ 1 file changed, 6 insertions(+) --- a/debian/scripts/koha-disable +++ a/debian/scripts/koha-disable @@ -63,6 +63,12 @@ do RET=$(disable_instance $name) if [ "$RET" = 0 ]; then restart_apache="yes" + if is_sip_enabled $name; then + koha-stop-sip $name + fi + if is_zebra_running $name; then + koha-stop-zebra $name + fi elif [ "$RET" = 2 ]; then warn "Error: Apache configuration file not present for instance $name." else --