blob: bde5877c62b63c795be0a35a90793ffddb7fd20c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#!/sbin/runscript
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
extra_started_commands="reload"
pidfile="/var/run/icecast.pid"
command="/usr/bin/icecast"
command_args="-c /etc/icecast2/icecast.xml"
command_background="true"
depend() {
need net
}
reload() {
ebegin "Reloading Icecast2 configuration"
start-stop-daemon --signal HUP --pidfile ${pidfile}
eend $?
}
|