0
0
mirror of https://github.com/openwrt/packages.git synced 2025-02-12 04:38:06 +00:00
Hirokazu MORIKAWA f3ab4db2c8 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>
2019-02-06 15:42:40 +09:00

19 lines
432 B
Bash

#!/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
}