mirror of
https://github.com/opf/openproject.git
synced 2026-06-14 03:30:14 +00:00
3b2121f733
This reverts commit40b2bbeb09, reversing changes made tob4c6cb17cc.
10 lines
166 B
Bash
Executable File
10 lines
166 B
Bash
Executable File
#!/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
|