21 lines
398 B
D
21 lines
398 B
D
|
#!/sbin/runscript
|
||
|
# Copyright 1999-2006 Gentoo Foundation
|
||
|
# Distributed under the terms of the GNU General Public License v2
|
||
|
# $Header: /var/cvsroot/gentoo-x86/www-misc/zoneminder/files/Attic/init.d,v 1.3 2009/01/01 16:47:24 gentoofan23 Exp $
|
||
|
|
||
|
depend() {
|
||
|
use mysql
|
||
|
}
|
||
|
|
||
|
start() {
|
||
|
ebegin "Starting zoneminder"
|
||
|
${CMD_START}
|
||
|
eend $?
|
||
|
}
|
||
|
|
||
|
stop() {
|
||
|
ebegin "Stopping zoneminder"
|
||
|
${CMD_STOP}
|
||
|
eend $?
|
||
|
}
|