diff options
author | James Meyer <james.meyer@operamail.com> | 2012-11-01 20:57:51 (GMT) |
---|---|---|
committer | James Meyer <james.meyer@operamail.com> | 2012-11-01 20:57:51 (GMT) |
commit | e851f51157ac00aa3de03f4bb9743c6a7d91bea8 (patch) | |
tree | 9e8b5cc91129ce33d469c7be61c091b135b6aa93 /abs/core/zoneminder/run | |
parent | 8fefa501175bdcc7d250b27bf8475b55f79e03cd (diff) | |
download | linhes_pkgbuild-e851f51157ac00aa3de03f4bb9743c6a7d91bea8.zip linhes_pkgbuild-e851f51157ac00aa3de03f4bb9743c6a7d91bea8.tar.gz linhes_pkgbuild-e851f51157ac00aa3de03f4bb9743c6a7d91bea8.tar.bz2 |
zoneminder 1.25: made it easier for end users to get this product up and running.
It will not integrate itself with lighttpd and install the database.
runit-scripts holds the run file.
All that should be needed for this package to work is
add_service zoneminder
Then access the console at
http://localhost/zm
Unfortunatly only mythzoneminder on the backend will be able to use zoneminder. This is a shortcoming of the integration with myth and zoneminder.
Diffstat (limited to 'abs/core/zoneminder/run')
-rwxr-xr-x | abs/core/zoneminder/run | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/abs/core/zoneminder/run b/abs/core/zoneminder/run deleted file mode 100755 index ce61c24..0000000 --- a/abs/core/zoneminder/run +++ /dev/null @@ -1,21 +0,0 @@ -#!/bin/bash -export TERM=linux -. /etc/rc.conf -. /etc/rc.d/functions - -while true ; do - PID=`pidof -x zmdc.pl` - if test -n "$PID" ; then - sleep 60 - continue - fi - stat_runit "Starting ZoneMinder" - /etc/rc.d/zm start - if test $? -ne 0 ; then - stat_fail - else - add_daemon zm - stat_done - fi - sleep 30 -done |