#!/bin/bash

if ps aux | grep 'good_job start' | grep -v grep; then
  echo "background worker running"
  exit 0
fi
  echo "background worker not running"
  exit 1
fi
