2018-06-09 23:34:06 +00:00
|
|
|
#!/bin/bash
|
|
|
|
if [ -e "INSTALL/installed.txt" ]; then
|
|
|
|
echo "Starting Shinobi"
|
|
|
|
pm2 start camera.js
|
2022-12-03 15:57:53 +00:00
|
|
|
#pm2 start cron.js
|
2018-06-09 23:34:06 +00:00
|
|
|
pm2 logs
|
|
|
|
fi
|
|
|
|
if [ ! -e "INSTALL/installed.txt" ]; then
|
|
|
|
chmod +x INSTALL/now.sh&&INSTALL/now.sh
|
2022-12-03 15:57:53 +00:00
|
|
|
fi
|