blob: 29928e69d2afc0c4b5c8e29cf57a2d0030c04022 (
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
|
#!/bin/sh
#Uncomment the line below to begin (mandatory)
#CHECK=YES
#Below the user to run the service as (mandatory)
RUNASUSER="root"
#Below the password on the XBOX (optional)
#REMOTEPASS="xboxpassword"
#Below the interface to listen on (mandatory)
LISTENINTERFACE="192.168.1.1"
FOLLOWSYMLINKS=YES
#Comment (optional)
#SERVERCOMMENT="Video and MP3 server powered by Gentoo. Watch and listen and ENJOY."
#Shares to make available (mandatory)
SHARES="movies=/data/videos audio=/data/mp3"
#Location of binary file. Leave default unless you know what you're doing (mandatory)
BIN="/usr/sbin/ccxstream"
#-----------------------------------------------------------------------------#
#-----------------------------------------------------------------------------#
DIR="-"
PIDFILE=/var/run/ccxstream.pid
PARAMS="-f -F $PIDFILE -r $DIR -u $RUNASUSER"
if test "$FOLLOWSYMLINKS" = "YES" ; then
PARAMS="$PARAMS -L"
fi
if test "x$REMOTEPASS" != "x" ; then
PARAMS="$PARAMS -P $REMOTEPASS"
fi
if test "x$LISTENINTERFACE" != "x" ; then
PARAMS="$PARAMS -l $LISTENINTERFACE"
fi
for i in $SHARES ; do
PARAMS="$PARAMS -S $i"
done
if test "x$SERVERCOMMENT" = "x" ; then
SERVERCOMMENT="$(hostname -f)"
fi
|