2017-09-10 19:37:03 +00:00
|
|
|
#!/sbin/openrc-run
|
2006-08-23 20:56:07 +00:00
|
|
|
# This file is part of Fail2Ban.
|
|
|
|
#
|
|
|
|
# Fail2Ban is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# Fail2Ban is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with Fail2Ban; if not, write to the Free Software
|
2011-11-21 12:20:20 +00:00
|
|
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2006-08-23 20:56:07 +00:00
|
|
|
#
|
|
|
|
# Author: Sireyessire, Cyril Jaquier
|
2012-04-16 18:43:09 +00:00
|
|
|
#
|
2006-08-23 20:56:07 +00:00
|
|
|
|
2017-10-28 16:14:03 +00:00
|
|
|
description="Daemon to ban hosts that cause multiple authentication errors"
|
|
|
|
description_reload="reload configuration"
|
2018-07-15 17:54:22 +00:00
|
|
|
extra_started_commands="reload"
|
2006-08-23 20:56:07 +00:00
|
|
|
|
2018-07-15 17:13:13 +00:00
|
|
|
command="/usr/bin/fail2ban-client"
|
|
|
|
command_args="${FAIL2BAN_OPTIONS}"
|
2018-07-15 17:15:44 +00:00
|
|
|
pidfile="/run/${RC_SVCNAME}/${RC_SVCNAME}.pid"
|
2018-07-15 17:44:53 +00:00
|
|
|
retry="30"
|
2006-08-23 20:56:07 +00:00
|
|
|
|
|
|
|
depend() {
|
2018-07-15 17:05:11 +00:00
|
|
|
use logger
|
2006-08-23 20:56:07 +00:00
|
|
|
after iptables
|
|
|
|
}
|
|
|
|
|
2018-07-15 17:32:03 +00:00
|
|
|
start_pre() {
|
|
|
|
checkpath -d "${pidfile%/*}" || return 1
|
|
|
|
|
|
|
|
# Remove stale socket after system crash, Gentoo bug 347477
|
|
|
|
rm -f /var/run/fail2ban/fail2ban.sock || return 1
|
|
|
|
}
|
|
|
|
|
2006-08-23 20:56:07 +00:00
|
|
|
start() {
|
2018-07-15 17:37:00 +00:00
|
|
|
ebegin "Starting ${RC_SVCNAME}"
|
2018-07-15 17:32:03 +00:00
|
|
|
|
2018-07-15 17:15:44 +00:00
|
|
|
start-stop-daemon --start --pidfile "${pidfile}" \
|
2018-07-15 17:13:13 +00:00
|
|
|
-- ${command} ${command_args} start
|
2018-07-15 17:37:00 +00:00
|
|
|
eend $? "Failed to start ${RC_SVCNAME}"
|
2006-08-23 20:56:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
stop() {
|
2018-07-15 17:37:00 +00:00
|
|
|
ebegin "Stopping ${RC_SVCNAME}"
|
2018-07-15 17:44:53 +00:00
|
|
|
start-stop-daemon --stop --pidfile "${pidfile}" --retry "${retry}" \
|
2018-07-15 17:13:13 +00:00
|
|
|
-- ${command} ${command_args} stop
|
2018-07-15 17:37:00 +00:00
|
|
|
eend $? "Failed to stop ${RC_SVCNAME}"
|
2006-08-23 20:56:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
reload() {
|
2018-07-15 17:37:00 +00:00
|
|
|
ebegin "Reloading ${RC_SVCNAME}"
|
2018-07-15 17:13:13 +00:00
|
|
|
${command} ${command_args} reload
|
2018-07-15 17:37:00 +00:00
|
|
|
eend $? "Failed to reload ${RC_SVCNAME}"
|
2006-08-23 20:56:07 +00:00
|
|
|
}
|