Mercurial Hosting > luan
view host/stop.sh @ 1629:124887e02dab
minor
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Tue, 07 Dec 2021 23:39:48 -0700 |
parents | 520707a70379 |
children | b735ed134662 |
line wrap: on
line source
#!/bin/bash . check_app.sh; #seconds to wait toWait=30; i=0; getPids; if [ "$PIDS" != "" ]; then while [ $i -lt $toWait ]; do kill -TERM $PIDS; sleep 1; getPids; if [ "$PIDS" == "" ]; then break fi; let i=$i+1; done; if [ "$PIDS" != "" ]; then echo "Can't stop app in ${i} seconds"; exit 0; else rm started.lock; echo "App stopped"; fi; else echo "no running app found"; fi; #sudo /usr/local/bin/nginx -s stop; exit 0;