Displaying 1 result from an estimated 1 matches for "ices2_bin".
2008 Sep 08
1
Running ices on startup
...m that icecast and the stream source would start concurrently, and the stream source couldn't find icecast, because it wasn't fully loaded yet.
According to yast, icecast loads in runlevels 3 and 5, and ices loads in runlevel 5.
For good measure, the startup script:
#!/bin/bash
RETVAL=0
ICES2_BIN=/usr/bin/ices
test -x $ICES2_BIN || { echo "$ICES2_BIN not installed";
if [ "$1" = "stop" ]; then exit 0;
else exit 5; fi; }
# What you want to do when you start the script
start() {
# put your commands here
RETVAL=0
}
# What you want to do when you stop the sc...