Make helper more posix compliant

master
pictuga 2021-12-29 15:40:43 +01:00
parent 2020543469
commit b74365b121
1 changed files with 5 additions and 5 deletions

10
morss-helper 100755 → 100644
View File

@ -3,15 +3,15 @@ if ! command -v python && command -v python3 ; then
alias python='python3'
fi
function run {
run() {
gunicorn --bind 0.0.0.0:${PORT:-8000} --preload --access-logfile - morss
}
function daemon {
daemon() {
gunicorn --bind 0.0.0.0:${PORT:-8000} --preload --access-logfile - --daemon morss
}
function reload {
reload() {
pid=$(pidof 'gunicorn: master [morss]') # NB. requires python-setproctitle
if [ -z "$pid" ]; then
@ -27,11 +27,11 @@ function reload {
fi
}
function check {
check() {
python -m morss.crawler http://localhost:${PORT:-8000}/ > /dev/null 2>&1
}
if [ "$1" = "sh" ] || [ "$1" = "bash" ] || [ "$(type -t "$1")" = "function" ]; then
if [ "$1" = "sh" ] || [ "$1" = "bash" ] || command -v "$1" ; then
$@
else