summaryrefslogtreecommitdiff
blob: 32a5d096883fbac2f59a8fed9440b5d22ea431ce (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
#!/sbin/openrc-run
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$

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 $?
}