view host/check_app.sh @ 1630:b735ed134662

add nginx and ssl for host
author fffilimonov
date Fri, 10 Dec 2021 17:08:17 +0000
parents 520707a70379
children 665049cffc02
line wrap: on
line source

PIDS="";

function getPids() {
  PIDS=$(ps ax | awk '{if($0~"[r]un.luan"){print $1}}');
}

function checkStopped() {
  getPids;
  if [ "$PIDS" != "" ]; then
    echo "App already running";
    exit 0;
  fi;
}

function checkRunning() {
  getPids;
  if [ "$PIDS" != "" ]; then
    echo "App running";
  else
    echo "App not running";
    exit 0;
  fi;
}