view host/check_app.sh @ 1632:0344a535b1db

add doc
author fffilimonov
date Tue, 14 Dec 2021 07:41:01 +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;
}