Displaying 1 result from an estimated 1 matches for "iceconfig".
Did you mean:
acconfig
2008 Nov 03
2
reloading configuration in icecast chroot jail on a redhat system
...ted. However, the loop plays indefinitely.
First, here is the startup script (I call this icectl); my configuration
chroots icecast to
/usr/local/share/icecast. The relevant case is reload)
!/bin/sh
#
#
# chkconfig: 2345 70 40
# description: icecast startup script
#
ICECAST=/usr/local/bin/icecast
ICECONFIG=/usr/local/etc/icecast.xml
ICEPIDFILE=/usr/local/share/icecast/icecast.pid
. /etc/rc.d/init.d/functions
RETVAL=0
case "$1" in
start)
echo -n "Starting icecast: "
[ -f $ICECAST ] || exit 1
[ -f $ICECONFIG ] || exit 1
daemon --pidfile=$ICEPIDFILE $IC...