#!/bin/sh
# chkconfig: 2345 70 70
### BEGIN INIT INFO
# Provides:          pvrsrv
# Required-Start:    modules $local_fs
# Required-Stop:     
# Default-Start:     2 3 4 5
# Default-Stop:      0 1 6
# Short-Description: Start pvr services
# Description:       Enable service provided by pvr driver
# X-Start-Before:    
# X-Stop-After:      
# X-Timesys-Start-Number:  70
# X-Timesys-Stop-Number:  30
### END INIT INFO

case "$1" in 
  start)
    echo Starting PVR
    /usr/bin/pvrsrvctl --start --no-module
  ;;
  stop)
    # Nothing to do
  ;;
  *)
    echo "$0 [start|stop]"
  ;;
esac
