summaryrefslogtreecommitdiffstats
path: root/abs/core/zoneminder/run
diff options
context:
space:
mode:
Diffstat (limited to 'abs/core/zoneminder/run')
-rwxr-xr-xabs/core/zoneminder/run21
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