Sindbad~EG File Manager

Current Path : /var/lib/dpkg/info/
Upload File :
Current File : /var/lib/dpkg/info/nginx-core.postinst

#!/bin/sh
set -e

case "$1" in
  abort-upgrade|abort-remove|abort-deconfigure|configure)
    ;;
  triggered)
    if [ -x /etc/init.d/nginx ]; then
      if [ -s /run/nginx.pid ] && pidof /usr/sbin/nginx >/dev/null; then
        echo "Triggering nginx reload ..."
        invoke-rc.d nginx reload || true
      fi
    fi
    exit 0
    ;;
  *)
    echo "postinst called with unknown argument \`$1'" >&2
    exit 1
    ;;
esac

if [ -x /etc/init.d/nginx ]; then
  if [ -f /run/nginx.pid ] && pidof /usr/sbin/nginx >/dev/null; then
    NGX_PID=`cat /run/nginx.pid`
    if kill -s USR2 $NGX_PID 2>/dev/null; then
      while [ ! -s /run/nginx.pid.oldbin ] || [ ! -s /run/nginx.pid ]; do
        cnt=`expr $cnt + 1`
        if [ $cnt -gt 10 ]; then
          kill -s KILL $NGX_PID
          invoke-rc.d nginx start
          exit 0
        fi
        sleep 1
      done
      NGX_OLD_PID=`cat /run/nginx.pid.oldbin`
      kill -s QUIT $NGX_OLD_PID
    fi
  else
    if [ -z "$(ss -nlt 'sport = 80' | grep -v ^State)" ]; then
      invoke-rc.d nginx start || exit $?
    else
      echo "Not attempting to start NGINX, port 80 is already in use."
      exit 0
    fi
  fi
fi



exit 0

Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists