summaryrefslogtreecommitdiff
path: root/www-misc/zoneminder/files/init.d
diff options
context:
space:
mode:
Diffstat (limited to 'www-misc/zoneminder/files/init.d')
-rw-r--r--www-misc/zoneminder/files/init.d25
1 files changed, 0 insertions, 25 deletions
diff --git a/www-misc/zoneminder/files/init.d b/www-misc/zoneminder/files/init.d
deleted file mode 100644
index 6ee8a160155e..000000000000
--- a/www-misc/zoneminder/files/init.d
+++ /dev/null
@@ -1,25 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-depend() {
- need mysql
- need apache2
-}
-
-start_pre() {
- checkpath -d -m 0775 -o apache:apache /var/run/zm
- checkpath -d -m 0775 -o apache:apache /var/tmp/zm
-}
-
-start() {
- ebegin "Starting zoneminder"
- ${CMD_START}
- eend $?
-}
-
-stop() {
- ebegin "Stopping zoneminder"
- ${CMD_STOP}
- eend $?
-}