fail2ban: fix runtime error

use success/failure calls in initd/function

Signed-off-by: Armin Kuster <akuster808@gmail.com>
This commit is contained in:
Armin Kuster
2020-01-04 15:22:47 -08:00
parent 5d629ccb54
commit b72cc7f87c

View File

@@ -39,9 +39,9 @@ start() {
RETVAL=$?
if [ $RETVAL = 0 ]; then
touch ${lockfile}
echo_success
success
else
echo_failure
failure
fi
echo
return $RETVAL
@@ -53,9 +53,9 @@ stop() {
RETVAL=$?
if [ $RETVAL = 0 ]; then
rm -f ${lockfile} ${pidfile}
echo_success
success
else
echo_failure
failure
fi
echo
return $RETVAL