diff --git a/get-queue.sh b/get-queue.sh index 0163a75..66bdc17 100755 --- a/get-queue.sh +++ b/get-queue.sh @@ -1,3 +1,5 @@ #! /usr/bin/env bash -midclt call core.get_jobs | jq -r '.[] | select( .time_finished == null ) | "\(.id) - \(.arguments[0])"' +IGNORE_CRON=${1:-$IGNORE_CRON} +CRON_TEST="${IGNORE_CRON:+and (.method != \"cronjob.run\")}" +midclt call core.get_jobs | jq -r '.[] | select( (.time_finished == null) '"${CRON_TEST}"' ) | "\(.id) - \(.arguments[0])"'