node-homebridge: add new package / Node.js HomeKit Server

Homebridge is a lightweight Node.js server you can run on your home network that emulates the iOS HomeKit API

Signed-off-by: Hirokazu MORIKAWA <morikw2@gmail.com>
This commit is contained in:
Hirokazu MORIKAWA
2017-11-21 11:53:03 +09:00
parent 1b8d8770ff
commit f3ab4db2c8
2 changed files with 87 additions and 0 deletions
@@ -0,0 +1,18 @@
#!/bin/sh /etc/rc.common
START=98
USE_PROCD=1
start_service() {
[ -d /usr/share/homebridge ] || {
mkdir -m 0755 -p /usr/share/homebridge
chmod 0700 /usr/share/homebridge
chown homebridge:homebridge /usr/share/homebridge
}
procd_open_instance
procd_set_param command /usr/bin/homebridge -U /usr/share/homebridge
procd_set_param user homebridge
procd_set_param stdout 1
procd_set_param stderr 1
procd_close_instance
}