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.

18 lines
432 B

  1. #!/bin/sh /etc/rc.common
  2. START=98
  3. USE_PROCD=1
  4. start_service() {
  5. [ -d /usr/share/homebridge ] || {
  6. mkdir -m 0755 -p /usr/share/homebridge
  7. chmod 0700 /usr/share/homebridge
  8. chown homebridge:homebridge /usr/share/homebridge
  9. }
  10. procd_open_instance
  11. procd_set_param command /usr/bin/homebridge -U /usr/share/homebridge
  12. procd_set_param user homebridge
  13. procd_set_param stdout 1
  14. procd_set_param stderr 1
  15. procd_close_instance
  16. }