Signed-off-by: Arturo Rinaldi <arty.net2@gmail.com> Signed-off-by: Marko Ratkaj <marko.ratkaj@sartura.hr>
12 lines
188 B
Bash
12 lines
188 B
Bash
#!/bin/sh /etc/rc.common
|
|
|
|
START=99
|
|
|
|
_npm=/usr/bin/npm
|
|
|
|
start()
|
|
{
|
|
mkdir -p /tmp/mozilla-iot/gateway/
|
|
cd /opt/mozilla-iot/gateway/
|
|
$_npm start &> /tmp/mozilla-iot/gateway/run-app.log &
|
|
}
|