summaryrefslogtreecommitdiff
path: root/audio/daapd/files/daapd.sh
blob: 92cc22b6883e21c0f5da9cd2d7a5ef70f25eae32 (plain) (blame)
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
#!/bin/sh
# $FreeBSD$

# PROVIDE: daapd
# REQUIRE: DAEMON
# KEYWORD: FreeBSD shutdown

# Define these daapd_* variables in one of these files:
#       /etc/rc.conf
#       /etc/rc.conf.local
#       /etc/rc.conf.d/daapd
#
# DO NOT CHANGE THESE DEFAULT VALUES HERE
#
daapd_enable="NO"
daapd_flags=""

. %%RC_SUBR%%

name="daapd"
rcvar=`set_rcvar`

daapd_user="%%USER%%"
daapd_group="%%USER%%"
prefix="%%PREFIX%%"
logdir="%%LOGDIR%%"
cache="%%CACHE%%"

daapdBin="${prefix}/sbin/daapd"
daapdCfg="${prefix}/etc/daapd.conf"
daapdLog="${logdir}/daapd.log"

required_files="${daapdCfg}"

start_precmd="touch ${daapdLog}; chown ${daapd_user} ${daapdLog}; touch ${cache}; chown ${daapd_user} ${cache};"

command="${daapdBin}"
command_args="${daapd_flags} >>${daapdLog} 2>&1 &"

load_rc_config $name
run_rc_command "$1"