summaryrefslogtreecommitdiffstats
path: root/network/hiawatha/rc.hiawatha
blob: 19360e084e4c6729530b37ea52bfd5835598619a (plain)
#!/bin/sh

# Start/stop/restart the hiawatha web server
# Copyright (c) 2009 Antonio Hernández Blas <hba.nihilismus@gmail.com>

CONF='/etc/hiawatha'
CMMD="/usr/sbin/hiawatha -c $CONF"

hiawatha_start() {
  if [ -x /usr/sbin/hiawatha ]; then
    if [ -d $CONF ]; then
      PIDOF=$(pgrep -f "$CMMD")
      if [ ! -z "$PIDOF" ]; then
        echo "Error, hiawatha is already running."
      else
        echo "Starting hiawatha:  $CMMD"
        $CMMD
      fi
    else
      echo "Error, directory $CONF does not exist."
    fi
  fi
}

hiawatha_stop() {
  PIDOF=$(pgrep -f "$CMMD")
  if [ -z "$PIDOF" ]; then
    echo "Error, hiawatha is not running."
  else
    echo "Stoping hiawatha:  /bin/kill -s TERM $PIDOF"
    /bin/kill -s TERM $PIDOF
  fi
}

hiawatha_status() {
  PIDOF=$(pgrep -f "$CMMD")
  if [ ! -z "$PIDOF" ]; then
    echo "hiawatha is running."
  else
    echo "hiawatha is not running."
  fi
}

case $1 in
  start)
    hiawatha_start
  ;;
  stop)
    hiawatha_stop
  ;;
  restart)
    hiawatha_stop
    sleep 3
    hiawatha_start
  ;;
  status)
    hiawatha_status
  ;;
  *)
    echo "Usage $0 {start|stop|restart|status}"
    exit 1
  ;;
esac