Mercurial Hosting > luan
view host/stop.sh @ 1832:d55c3eaf21d7 default tip
add jar
author | clarkton <ibraclarkton@gmail.com> |
---|---|
date | Wed, 11 Dec 2024 17:17:56 +0000 |
parents | b735ed134662 |
children |
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 $(which nginx) -s stop; exit 0;