mirror of
https://github.com/novatiq/packages.git
synced 2026-04-29 23:18:42 +01:00
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:
@@ -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
|
||||
}
|
||||
Reference in New Issue
Block a user