“tput: No value for $TERM and no -T specified ” error logged by CRON process
Something in the script is calling the tput binary. tput attempts to inspect the $TERM variable to determine the current terminal so it can produce the correct control sequences. There isn’t a terminal when cron is running so you get that error from tput. You can either manually assign a TERM value to the cron … Read more