search for: icepidfile

Displaying 1 result from an estimated 1 matches for "icepidfile".

2008 Nov 03
2
reloading configuration in icecast chroot jail on a redhat system
...tely. 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 $ICECAST -b -c $ICECONFIG > /dev/null...