Clean up morss-helper
continuous-integration/drone/push Build is failing Details

master
pictuga 2021-12-28 16:30:20 +01:00
parent 8e9cc541b0
commit 8870400a6e
1 changed files with 27 additions and 12 deletions

39
morss-helper 100755 → 100644
View File

@ -1,21 +1,36 @@
#! /bin/sh #! /bin/sh
function run {
if [ "$1" = "sh" ] || [ "$1" = "bash" ]; then
exec $@
elif [ -z "$1" ] || [ "$@" = "run" ]; then
gunicorn --bind 0.0.0.0:${PORT:-8000} --preload --access-logfile - morss gunicorn --bind 0.0.0.0:${PORT:-8000} --preload --access-logfile - morss
}
elif [ "$@" = "reload" ]; then function daemon {
pid=$(pidof 'gunicorn: master [morss]') gunicorn --bind 0.0.0.0:${PORT:-8000} --preload --access-logfile - --daemon morss
kill -s USR2 $pid }
kill -s WINCH $pid
kill -s TERM $pid
elif [ "$@" = "check" ]; then function reload {
pid=$(pidof 'gunicorn: master [morss]') # NB. requires python-setproctitle
if [ -z "$pid" ]; then
# if gunicorn is not currently running
daemon
else
kill -s USR2 $pid
kill -s WINCH $pid
sleep 1 # give gunicorn some time to reload
kill -s TERM $pid
fi
}
function check {
python -m morss.crawler http://localhost:${PORT:-8000}/ > /dev/null 2>&1 python -m morss.crawler http://localhost:${PORT:-8000}/ > /dev/null 2>&1
}
if [ "$1" = "sh" ] || [ "$1" = "bash" ] || [ "$(type -t "$1")" = "function" ]; then
$@
else else
morss $@ python -m morss $@
fi fi