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.

12 lines
188 B

  1. #!/bin/sh /etc/rc.common
  2. START=99
  3. _npm=/usr/bin/npm
  4. start()
  5. {
  6. mkdir -p /tmp/mozilla-iot/gateway/
  7. cd /opt/mozilla-iot/gateway/
  8. $_npm start &> /tmp/mozilla-iot/gateway/run-app.log &
  9. }