aboutsummaryrefslogtreecommitdiff
path: root/src/gnump3d/gnump3d
blob: f6a33049f7423c79786ef0eaa15a629d62f756ab (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
#!/bin/sh

. /etc/rc.conf
. /etc/rc.d/functions

get_gnump3d_pid() {
  ps -C gnump3d -o pid= -o args= | grep /usr/bin/gnump3d | awk '{print $1}' | tr '\n' ' '
}

case "$1" in
  start)
    stat_busy "Starting GNUMP3d Streaming Server"
    [ "x$(get_gnump3d_pid)" == "x" ] && /usr/bin/gnump3d --quiet --background &
    if [ $? -gt 0 ]; then
      stat_fail
    else
      add_daemon gnump3d
      stat_done
    fi
    ;;

  stop)
    stat_busy "Stopping GNUMP3d Streaming Server"
    for PID in $(get_gnump3d_pid) ; do
      kill $PID 2> /dev/null
    done
    if [ $? -gt 0 ]; then
      stat_fail   
    else
      rm_daemon gnump3d
      stat_done
    fi
    ;;

  restart)
    $0 stop
    sleep 1
    $0 start
    ;;

  *)
    echo "usage: $0 {start|stop|restart}"
esac

exit 0