@@ -, +, @@ "Instance INSTANCE disabled. No action taken." to package site over /usr/sbin/koha-stop-zebra. --- debian/scripts/koha-stop-zebra | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) --- a/debian/scripts/koha-stop-zebra +++ a/debian/scripts/koha-stop-zebra @@ -67,16 +67,12 @@ EOF for name in "$@" do if is_instance $name ; then - if is_enabled $name ; then - if is_zebra_running $name; then - if ! stop_zebra_instance $name; then - warn "Something went wrong stopping Zebra for $name." - fi - else - warn "Zebra already stopped for instance $name." + if is_zebra_running $name; then + if ! stop_zebra_instance $name; then + warn "Something went wrong stopping Zebra for $name." fi else - warn "Instance $name disabled. No action taken." + warn "Zebra already stopped for instance $name." fi else warn "Unknown instance $name." --