diff --git a/debian/scripts/koha-stop-zebra b/debian/scripts/koha-stop-zebra index cf5084d9a0..10c8b78379 100755 --- a/debian/scripts/koha-stop-zebra +++ b/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."