blob: e6c91b08cdde6a6d2dd8eed13986e9b9b364d7d7 (
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
55
56
57
58
59
60
61
62
63
64
65
66
|
#!/bin/bash
. /etc/rc.conf
. /etc/rc.d/functions
timeo=30
getPID() {
pgrep -u nobody icecast 2>/dev/null
}
case $1 in
start)
stat_busy "Starting Icecast Server"
if getPID >/dev/null; then
# already running
stat_fail
exit 1
else
/usr/bin/icecast -b -c /etc/icecast.xml &>/dev/null
while (( timeo > 0 )); do
if getPID >/dev/null; then
add_daemon icecast
stat_done
exit 0
fi
sleep 1
(( timeo-- ))
done
stat_fail
exit 1
fi
;;
stop)
stat_busy "Stopping Icecast Server"
if ! getPID >/dev/null; then
# not running
stat_done
exit 1
fi
if ! kill $(getPID) &> /dev/null; then
stat_fail
exit 1
fi
while (( timeo > 0 )); do
if getPID >/dev/null; then
rm_daemon icecast
stat_done
exit 0
fi
sleep 1
(( timeo-- ))
done
stat_fail
exit 1
;;
restart)
$0 stop
$0 start
;;
*)
echo "usage: $0 {start|stop|restart}"
esac
exit 0
|