I noticed that my cert renewals were coming back with no output. I've managed to track it down to line 146. It appears that since shwordsplit isn't set in my environment, the grep fails, and the script exits. Turning off errexit for this line allows the script to continue. I do not experience this issue with Bash.
I noticed that my cert renewals were coming back with no output. I've managed to track it down to line 146. It appears that since
shwordsplit
isn't set in my environment, the grep fails, and the script exits. Turning offerrexit
for this line allows the script to continue. I do not experience this issue with Bash.