diff options
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 |