Fix to init script

This commit is contained in:
Patrick McDonagh
2016-08-05 16:00:42 -05:00
parent a61cdf0e55
commit 49e6e0605f

View File

@@ -19,7 +19,7 @@ case "$1" in
echo "Starting loggers"
kill -9 $(cat /root/dataLogger.pid)
# run application you want to start
/usr/bin/python /home/poconsole/datalogger/dataLogger.py > /dev/null 2>&1 & echo $! > "/root/dataLogger.pid"
/usr/bin/python /root/datalogger/dataLogger.py > /dev/null 2>&1 & echo $! > "/root/dataLogger.pid"
;;
stop)