aboutsummaryrefslogtreecommitdiffstats
path: root/audio/shoutcast/files/shoutcast.sh.in
blob: e737ff4c27f47490cc161255dd69b3f918c87f8c (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
#!/bin/sh
#

# PROVIDE: shoutcast
# REQUIRE: LOGIN
# BEFORE:
# KEYWORD: FreeBSD shutdown

. /etc/rc.subr

name="shoutcast"
rcvar=`set_rcvar`
start_cmd="shoutcast_startcmd"
stop_cmd="shoutcast_stopcmd"

shoutcast_startcmd ()
{
%%PREFIX%%/sbin/sc_serv %%PREFIX%%/etc/sc_serv.conf
}

imapd_stopcmd ()
{
killall sc_serv
}

load_rc_config $name
run_rc_command "$1"