Init script is database agnostic

This commit is contained in:
Patrick McDonagh
2016-05-03 15:15:44 -05:00
parent 0982630651
commit 39b6c1b6a7

View File

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