files/fail2ban-openrc.init: drop "need net" dependency.

The "need net" dependency in our OpenRC service script was incorrect:
the fail2ban service does not need a working WAN to function. This
issue is well-documented and is covered in the OpenRC Service Script
Guide, currently located at

  https://github.com/OpenRC/openrc/blob/master/service-script-guide.md
pull/2182/head
Michael Orlitzky 2018-07-15 12:59:18 -04:00
parent eb58e90ba9
commit 64ec399542
1 changed files with 0 additions and 1 deletions

View File

@ -26,7 +26,6 @@ extra_started_commands="reload showlog"
FAIL2BAN="/usr/bin/fail2ban-client ${FAIL2BAN_OPTIONS}"
depend() {
need net
need logger
after iptables
}