#!/bin/sh
### BEGIN INIT INFO
# Provides:          liquidsoap
# Required-Start:
# Required-Stop:
# Should-Start:
# Should-Stop:
# Default-Start:     2 3 4 5
# Default-Stop:      0 1 6
# Short-Description: Starts the liquidsoap daemon
# Description:
### END INIT INFO

user=liquidsoap
group=liquidsoap
prefix=/usr
exec_prefix=${prefix}
confdir=/etc/liquidsoap
liquidsoap=${exec_prefix}/bin/liquidsoap
rundir=/var/run/liquidsoap

case "$1" in
  stop)
    echo -n "Stopping channels:"
    cd $rundir
    for liq in *.pid ; do
      if test $liq != '*.pid' ; then
        echo -n " $liq"
        start-stop-daemon --stop --quiet --pidfile $liq
      fi
    done
    echo "."
    ;;

  start)
    echo -n "Starting channels:"
    cd $confdir
    for liq in *.liq ; do
      if test $liq != '*.liq' ; then
        echo -n " $liq "
        start-stop-daemon --start --quiet --pidfile $rundir/${liq%.liq}.pid \
          --chuid $user:$group --exec $liquidsoap -- -d $confdir/$liq
      fi
    done
    echo "."
    ;;

  restart|force-reload)
    $0 stop
    sleep 4
    $0 start
    ;;

  *)
    echo "Usage: $0 {start|stop|restart|force-reload}"
    exit 1
    ;;
esac
