From 39b6c1b6a7900f434345bf5c29083554c67b55a0 Mon Sep 17 00:00:00 2001 From: Patrick McDonagh Date: Tue, 3 May 2016 15:15:44 -0500 Subject: [PATCH] Init script is database agnostic --- init/tagserver | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init/tagserver b/init/tagserver index bf33dd0..1322397 100755 --- a/init/tagserver +++ b/init/tagserver @@ -19,7 +19,7 @@ case "$1" in echo "Starting loggers" kill -9 $(cat /root/tagserver.pid) # 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)