# /etc/init.d/udpxy
 
# Multicast-Proxy udpxy
# wandelt Multicast- zu Unicast-Streams
#
case "$1" in
  start)
    /usr/local/bin/udpxy -p 18080
    ;;
  stop)
    pkill udpxy
    echo "stopped"
    ;;
  *)
    echo "Usage: /etc/init.d/udpxy {start|stop}"
    exit 1
    ;;
esac
 
exit 0
