From 85d3112adbba84cdc9958b1f6bef99ba2e247061 Mon Sep 17 00:00:00 2001 From: Matt Hill Date: Thu, 3 Jul 2014 12:51:23 -0400 Subject: [PATCH] Updated config name --- config/{daemon.conf => alprd.conf} | 0 config/wts.conf | 18 ------------------ src/daemon.cpp | 2 +- 3 files changed, 1 insertion(+), 19 deletions(-) rename config/{daemon.conf => alprd.conf} (100%) delete mode 100644 config/wts.conf diff --git a/config/daemon.conf b/config/alprd.conf similarity index 100% rename from config/daemon.conf rename to config/alprd.conf diff --git a/config/wts.conf b/config/wts.conf deleted file mode 100644 index 5da8599..0000000 --- a/config/wts.conf +++ /dev/null @@ -1,18 +0,0 @@ - - -[daemon] -; Declare each stream on a separate line -; each unique stream should be defined as stream = [url] - -stream = http://192.168.1.7:1234/webcam.mjpg -;stream = http://www.google.com/video.stream -;stream = http://stream2.com/stream - -site_id = watchtower-hq - -;image_folder = /var/www/html/plates/ -image_folder = /tmp/ - -; upload address is the destination to POST to -upload_address = http://localhost:9000/alpr/push/ - diff --git a/src/daemon.cpp b/src/daemon.cpp index 103fac7..1f4e94b 100644 --- a/src/daemon.cpp +++ b/src/daemon.cpp @@ -29,7 +29,7 @@ void dataUploadThread(void* arg); // Constants const std::string DEFAULT_LOG_FILE_PATH="/var/log/openalpr.log"; -const std::string DAEMON_CONFIG_FILE_PATH="/etc/openalpr/daemon.conf"; +const std::string DAEMON_CONFIG_FILE_PATH="/etc/openalpr/alprd.conf"; const std::string BEANSTALK_QUEUE_HOST="127.0.0.1"; const int BEANSTALK_PORT=11300;