Fix the exit code of the keepalive notifiy script.

This commit is contained in:
Andrea Dell'Amico 2019-10-26 11:49:12 +02:00
parent 361f51e152
commit af2319c1df
1 changed files with 3 additions and 2 deletions

View File

@ -6,6 +6,7 @@ export PATH="/sbin:/usr/sbin:/bin:/usr/bin:$PATH"
TYPE=$1 TYPE=$1
NAME=$2 NAME=$2
STATE=$3 STATE=$3
RETVAL=0
{% if keepalived_notify_extra_params is defined %} {% if keepalived_notify_extra_params is defined %}
{{ keepalived_notify_extra_params }} {{ keepalived_notify_extra_params }}
@ -13,8 +14,8 @@ STATE=$3
{% if keepalived_nagios_check %} {% if keepalived_nagios_check %}
echo $TYPE $NAME is in $STATE state > /var/run/keepalive.state echo "$TYPE $NAME is in $STATE state" > /var/run/keepalive.state
{% endif %} {% endif %}
exit 0 exit $RETVAL