From eec431f357781096bc422bda299267861c03929f Mon Sep 17 00:00:00 2001 From: Natanael Copa Date: Wed, 4 Jan 2012 13:30:13 +0000 Subject: testing/sshguard: new aport Log monitor that blocks with iptables on bad behaviour http://www.sshguard.net/ --- testing/sshguard/sshguard.initd | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 testing/sshguard/sshguard.initd (limited to 'testing/sshguard/sshguard.initd') diff --git a/testing/sshguard/sshguard.initd b/testing/sshguard/sshguard.initd new file mode 100644 index 000000000..89ec7d592 --- /dev/null +++ b/testing/sshguard/sshguard.initd @@ -0,0 +1,25 @@ +#!/sbin/runscript +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-admin/sshguard/files/sshguard.initd,v 1.3 2011/04/25 04:59:43 jer Exp $ + +depend() { + after iptables + use logger +} + +SSHGUARD_PIDFILE=${SSHGUARD_PIDFILE:-/var/run/${SVCNAME}.pid} + +start() { + ebegin "Starting sshguard" + [[ -z ${SSHGUARD_WAIT} ]] && SSHGUARD_WAIT=999 + start-stop-daemon --start --wait ${SSHGUARD_WAIT} --background --quiet --exec \ + /usr/sbin/sshguard -- -i ${SSHGUARD_PIDFILE} ${SSHGUARD_OPTS} + eend $? +} + +stop() { + ebegin "Stopping sshguard" + start-stop-daemon --stop -p ${SSHGUARD_PIDFILE} + eend $? +} -- cgit v1.3