You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
150 B

  1. case "$ACTION" in
  2. add)
  3. # start process
  4. /etc/init.d/mjpg-streamer start
  5. ;;
  6. remove)
  7. # stop process
  8. /etc/init.d/mjpg-streamer stop
  9. ;;
  10. esac