#!/bin/bash
cd "$(dirname "$0")/../"
if [[ "`/usr/bin/php artisan horizon:status`" == "inactive" ]]
  then
    exit 0;
fi;
exit 1;
