bugcheck.initd 302 B

12345678910111213141516
  1. #!/bin/sh /etc/rc.common
  2. # Copyright (C) 2016 OpenWrt.org
  3. START=99
  4. USE_PROCD=1
  5. PROG=/usr/bin/bugchecker.sh
  6. # To actually make bugchecker.sh run, see comments
  7. # at top of its file.
  8. start_service () {
  9. procd_open_instance
  10. procd_set_param command "$PROG"
  11. procd_close_instance
  12. }