Fix Renew Skipped Return Code

$_ret is set to 0 above and is not set to 2 on "Skipped". Script exits with return code 0 when it should be 2.
This commit is contained in:
Lucas Peet 2018-04-18 00:31:27 -06:00
parent 98a7e72f0a
commit ebc410ca5f

View File

@ -4400,6 +4400,7 @@ renewAll() {
if [ "$rc" != "0" ]; then
if [ "$rc" = "$RENEW_SKIP" ]; then
_info "Skipped $d"
_ret="$rc"
elif [ "$_stopRenewOnError" ]; then
_err "Error renew $d, stop now."
return "$rc"