Your IP : 216.73.216.48


Current Path : /scripts/radio/
Upload File :
Current File : //scripts/radio/radio.sh

#!/bin/sh
sleep 1
if ! /usr/bin/pgrep -x "icecast" > /dev/null
then
    echo "RADIO is stopped... Restart now!"
    sleep 5
    /usr/bin/icecast -c /icecast/icecast.xml -b &
    sleep 15
    /usr/bin/ices /icecast/ices.xml &
else
    echo "Working"
fi