aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/freondemo/files/freondemo.init
blob: 5cb5281245909e1c78da39e92875ee9840c05532 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#! /bin/sh

set -e

DAEMON=/usr/bin/freondemo
NAME=freondemo
PIDFILE=/var/run/freondemo/pid
DESC="Freon Demo"
PARAMS=""

test -x $DAEMON || exit 0

start_it_up()
{
  if [ -e $PIDFILE ]; then
    PIDDIR=/proc/$(cat $PIDFILE)
    if [ -d ${PIDDIR} -a  "$(readlink -f ${PIDDIR}/exe)" = "${DAEMON}" ]; then 
      echo "$DESC already started; not starting."
    else
      echo "Removing stale PID file $PIDFILE."
      rm -f $PIDFILE
    fi
  fi

  source $SESSIONFILE
  echo -n "Starting $DESC: "
  start-stop-daemon --start --pidfile $PIDFILE \
    --exec $DAEMON -- $PARAMS
  echo "$NAME."
}

shut_it_down()
{
  echo -n "Stopping $DESC: "
  start-stop-daemon --stop --oknodo --pidfile $PIDFILE
  echo "$NAME."
  rm -f $PIDFILE
}

case "$1" in
  start)
    start_it_up
  ;;
  stop)
    shut_it_down
  ;;
  restart)
    shut_it_down
    sleep 1
    start_it_up
  ;;
  *)
    echo "Usage: /etc/init.d/$NAME {start|stop|restart}" >&2
    exit 1
  ;;
esac

exit 0