#!/sbin/runscript # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/net-analyzer/barnyard/files/barnyard.rc6,v 1.4 2005/11/26 13:10:49 strerror Exp $ 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 \ -- ${BARNYARD_OPTS} >/dev/null 2>&1 eend $? } stop() { ebegin "Stopping barnyard2" start-stop-daemon --stop --quiet --pidfile ${PIDFILE} eend $? }