]> git.pld-linux.org Git - packages/flixengine.git/blob - flixengine.init
- unconditional noarch subpackages
[packages/flixengine.git] / flixengine.init
1 #!/bin/sh
2 #
3 # flixengine   
4 #
5 # chkconfig:    345 12 88
6 #
7 # description: On2 Technologies Flix Engine init script
8 # processname:  flixd
9
10 # Source function library
11 . /etc/rc.d/init.d/functions
12
13 ## Specify the mencoder binary for flixd to use when decoding source files.
14 ## If running flixd from the command line or using su within this script to run
15 ## it as another user ensure that this environment variable is set. The default
16 ## install path for mencoder will not be in PATH so without this variable set
17 ## flixd will be unable to decode source files.
18 export FLIXD_MENCODER=/usr/bin/mencoder-flixengine
19
20 ## Avoid potential seg fault due to unchecked allocations within libogg.
21 ## This will force a read error should any encode instance's ogg demuxer
22 ## use more than 70% of available physical memory
23 ## See flixd(8) for further details.
24 export FLIX_OGG_PHYMEM_PCTMAX=70
25
26 AUTHDIR=/etc/on2
27 PORT=2372
28 USERID=flixd
29 INTERFACE=lo
30
31 if [ "$1" != "stop" ]; then
32         check_portmapper || { nls "Error: portmap isn't running" && exit 0; }
33 fi
34
35 # Get service config - may override defaults
36 [ -f /etc/sysconfig/flixd ] && . /etc/sysconfig/flixd
37
38 start() {
39         # Check if the service is already running?
40         if [ ! -f /var/lock/subsys/flixd ]; then
41                 msg_starting "Flix Engine"
42                 export LD_LIBRARY_PATH=/usr/lib/flixd
43                 daemon --user $USERID /usr/sbin/flixd --authdir=$AUTHDIR \
44                         --interface=$INTERFACE --port=$PORT --reuseaddr \
45                         --pidfile /var/run/flixd/flixd.pid --logfile=/var/log/flixd.log
46                 RETVAL=$?
47                 [ $RETVAL = 0 ] && touch /var/lock/subsys/flixd
48         else
49                 msg_already_running "Flix Engine"
50         fi
51 }
52
53 stop() {
54         # Stop daemons.
55         if [ -f /var/lock/subsys/flixd ]; then
56                 msg_stopping "Flix Engine"
57                 killproc --pidfile flixd/flixd.pid flixd
58                 rm -f /var/lock/subsys/flixd
59         else
60                 msg_not_running "Flix Engine"
61         fi
62 }
63
64 RETVAL=0
65 # See how we were called.
66 case "$1" in
67 start)
68         start
69         ;;
70 stop)
71         stop
72         ;;
73 restart)
74         stop
75         sleep 1
76         start
77         ;;
78 status)
79         status flixd
80         RETVAL=$?
81         ;;
82 *)
83         msg_usage "$0 {start|stop|restart|status}"
84         exit 3
85         ;;
86 esac
87
88 exit $RETVAL
This page took 0.074178 seconds and 3 git commands to generate.