0

我有以下 bash 脚本:

!/bin/bash
# script to send simple email 
#Wait 5 seconds
#sleep 05
# email subject
SUBJECT="SUBJECT"
# Email To ?
EMAIL="EMAIL"
# Email text/message
MYIP=$(curl http://ipecho.net/plain)
LASTIP=$(head -n 1 /home/ubuntu/myip.txt)
echo "Last IP:" $LASTIP
echo "Current IP:" $MYIP
#Check if IPs are the same
if [[ "$MYIP" == "$LASTIP" ]]; then
        echo "IP hasn't changed. Do nothing."
else
        sendemail -f $EMAIL -t $EMAIL -u $SUBJECT -m $MYIP -s smtp.gmail.com -o tls=yes -xu username -xp password
        echo $MYIP > myip.txt
fi

当我尝试在命令行中运行它时,它运行良好。当我将它包含在“crontab -e”中时,问题就开始了:“* * * * * /home/ubuntu/myip.sh”。

然后它不起作用。似乎是 sendmail 无法正常运行。当我执行以下操作时:tail -f /var/log/syslog

Sep 18 21:48:02 gpuserver sendmail[18665]: r8J1m1gO018665: from=ubuntu, size=314, class=0, nrcpts=1, msgid=<201309190148.r8J1m1gO018665@gpuserver>, relay=ubuntu@localhost
Sep 18 21:48:02 gpuserver sendmail[18665]: r8J1m1gO018665: to=ubuntu, ctladdr=ubuntu (1000/1000), delay=00:00:01, xdelay=00:00:00, mailer=relay, pri=30314, relay=[127.0.0.1] [127.0.0.1], dsn=4.0.0, stat=Deferred: Connection refused by [127.0.0.1]

有任何想法吗?

4

2 回答 2

0

当您从命令行运行脚本时,您正在利用当前环境。Cron 没有这些信息......所以你应该从命令行做的是:

env > me

然后编辑脚本并在脚本开头包含 ./me。这样您的 cron 任务将在相同的环境中运行。

于 2013-09-19T02:04:25.217 回答
0

当 cron 将某些内容打印到 stdout 或 stderr 时,cron 本身会尝试通过电子邮件发送报告。由于您可能没有配置系统范围的电子邮件,因此这可能是 syslog 中的错误消息的来源。

为防止 cron 发送任何邮件,请确保您的脚本及其生成的任何命令不会向 stdout 或 stderr 输出任何内容。一个简单的方法是将“&>/dev/null”添加到您的 cron 行。

您还可以在 crontab 的开头添加 'MAILTO=""'。

这一切都记录在 cron/crontab (man -k cron) 的手册页中。

于 2013-09-19T04:03:53.927 回答