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.

16 lines
245 B

  1. #!/bin/sh /etc/rc.common
  2. START=10
  3. STOP=15
  4. NAME="opentracker6"
  5. PROG="/usr/bin/opentracker6"
  6. OPTIONS="-f /etc/opentracker6.conf"
  7. USE_PROCD=1
  8. start_service()
  9. {
  10. procd_open_instance
  11. procd_set_param command $PROG $OPTIONS
  12. procd_close_instance
  13. }