#!/sbin/openrc-run # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ depend() { need net } checkconfig() { if [ ! -e /etc/sguil/snort_agent.conf ] ; then eerror "You need an /etc/sguil/snort_agent.conf to run the Sensor Agent" return 1 fi if [ ! -e /run/sguil ] ; then mkdir -p /run/sguil chown sguil:sguil /run/sguil fi } start() { checkconfig || return 1 ebegin "Starting Sensor Agent" start-stop-daemon --start -c sguil --quiet --exec /usr/bin/snort_agent.tcl \ -- -D -c "/etc/sguil/snort_agent.conf">/dev/null 2>&1 eend $? } stop() { ebegin "Stopping Sensor Agent" start-stop-daemon --stop --quiet --pidfile /run/sguil/snort-agent.pid eend $? }