Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Why does using set -e cause my script to fail when called in crontab?

I have a bash script that performs several file operations. When any user runs this script, it executes successfully and outputs a few lines of text but when I try to cron it there are problems. It seems to run (I see an entry in cron log showing it was kicked off) but nothing happens, it doesn't output anything and doesn't do any of its file operations. It also doesn't appear in the running processes anywhere so it appears to be exiting out immediately.

After some troubleshooting I found that removing "set -e" resolved the issue, it now runs from the system cron without a problem. So it works, but I'd rather have set -e enabled so the script exits if there is an error. Does anyone know why "set -e" is causing my script to exit?

Thanks for the help,
Ryan

like image 384
SDGuero Avatar asked Jul 14 '26 20:07

SDGuero


1 Answers

When your script runs under cron, the environment variables and path may be set differently than when the script is run directly by a user. Perhaps that's why it behaves differently?

To test this: create a new script that does nothing but printenv and echo $PATH. Run this script manually, saving the output, then run it as a cron job, saving that output. Compare the two environments. I am sure you will find differences...an interactive login shell will have had its environment set up by sourcing a ".login", ".bash_profile", or similar script (depending on the user's shell). This generally will not happen in a cron job, which is usually the reason for a cron job behaving differently from running the same script in a login shell.

To fix this: At the top of the script, either explicitly set the environment variables and PATH to match the interactive environment, or source the user's ".bash_profile", ".login", or other setup script, depending on which shell they're using.

like image 69
Jim Lewis Avatar answered Jul 18 '26 14:07

Jim Lewis



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!