Merge pull request #1311 from sbraz/gentoo-init

gentoo-initd: do not hide useful output
pull/1317/merge
Yaroslav Halchenko 2016-01-29 09:54:35 -05:00
commit b435e1e4c8
1 changed files with 3 additions and 3 deletions

View File

@ -34,19 +34,19 @@ start() {
# remove stalled sock file after system crash
# bug 347477
rm -f /var/run/fail2ban/fail2ban.sock || return 1
${FAIL2BAN} start &> /dev/null
${FAIL2BAN} start
eend $? "Failed to start fail2ban"
}
stop() {
ebegin "Stopping fail2ban"
${FAIL2BAN} stop &> /dev/null
${FAIL2BAN} stop
eend $? "Failed to stop fail2ban"
}
reload() {
ebegin "Reloading fail2ban"
${FAIL2BAN} reload > /dev/null
${FAIL2BAN} reload
eend $? "Failed to reload fail2ban"
}