view host/stop.sh @ 1648:224af797b1f9

Mainly small install script improvements - Consistent usage of `$LUANHOME`, removed reliance on current directory. - Made Luan build and install fine (on Linux) without requiring launching it via sudo. Only asks to elevate privileges if installation failed. - Minor spelling mistake fix.
author Fox
date Mon, 28 Mar 2022 18:00:12 +0200
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;