blob: 0b8d1590c9b8b81acd651b521d0d2e6dab7be7f8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
#!/sbin/openrc-run
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
depend() {
need net
}
checkconfig() {
if [ ! -e ${CONF} ] ; then
eerror "You need a configuration file to run barnyard2"
eerror "There is an example config in /etc/snort/barnyard2.conf.distrib"
return 1
fi
}
start() {
checkconfig || return 1
ebegin "Starting barnyard2"
start-stop-daemon --start --quiet --exec /usr/bin/barnyard2 \
-- --pid-path ${PID_PATH} --nolock-pidfile ${BARNYARD_OPTS} >/dev/null 2>&1
eend $?
}
stop() {
ebegin "Stopping barnyard2"
start-stop-daemon --stop --quiet --pidfile ${PID_PATH}/${PID_FILE}
eend $?
}
|