On Tru64 Unix (at least on 4.0F), some non-root-user drop an error message on the root's Mail
account when cronjobs used
su - foo -c /usr/bin/bar
Even some Compaq technicians could not tell that this results from terminal settings in the .profile, which are invalid on non-interactive terminals. The error messages (2 in fact) looks like this:
stty: tcgetattr: not a typewriter
Not a terminal.
The solution is to wrap commands like "stty dec" and "tset -I -Q" with a check on terminal capabilities:
if tty -s
then
stty dec
tset -I -Q
fi
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment