简短回答

简短回答

背景

我正在尝试编写一个脚本(请参阅问题末尾)来检查 Raspberry PI 上的温度,并在温度过高时自动关闭它。该脚本将由 cron 运行,每分钟一次,作为根用户

问题

脚本被执行,消息按预期打印,但是没有计划关闭,并且没有关于原因的错误消息。事实上,在 cron 运行脚本后,cat /run/systemd/shutdown/scheduled没有显示任何内容(文件不存在)。然而,手动运行该脚本后(仍以 root 身份),cat /run/systemd/shutdown/scheduled显示确实已计划关闭。

问题

为什么脚本在手动调用时有效,但在 cron 调用时却无效(即使它位于 root 的 crontab 中)?

有关的

这个问题类似,但答案的结论似乎是添加关闭根的crontab (通过crontab -e我所做的)应该没问题。

细节

剧本:/root/shutdown_overheat.sh

#!/bin/sh

MAXTEMP=30         # temporarily lowered for testing
TEMP=$(/opt/vc/bin/vcgencmd measure_temp | awk -F'[=.]' '{print $2}')
MSG="Temperature $TEMP higher than $MAXTEMP, shutting down in 2 minutes"

if [ "$TEMP" -gt "$MAXTEMP" ]; then
        wall $MSG
        logger System $MSG
        shutdown -h +2 $MSG
fi

手动运行脚本(以 root 身份):

# ./shutdown_overheat.sh 

Broadcast message from attilio@kolcsag (pts/0) (Fri Mar 13 20:41:13 2020):     

Temperature 54 higher than 30, shutting down in 2 minutes

Shutdown scheduled for Fri 2020-03-13 20:43:13 GMT, use 'shutdown -c' to cancel.
# cat /run/systemd/shutdown/scheduled 
USEC=1584132193792504
WARN_WALL=1
MODE=poweroff
WALL_MESSAGE=Temperature 54 higher than 30, shutting down in 2 minutes

cron 执行的脚本:


Broadcast message from root@kolcsag (somewhere) (Fri Mar 13 20:42:01 2020):    

Temperature 54 higher than 30, shutting down in 2 minutes

# cat /run/systemd/shutdown/scheduled 
cat: /run/systemd/shutdown/scheduled: No such file or directory

Root 的 crontab:

# crontab -l



# Edit this file to introduce tasks to be run by cron.
# 
# ... etc

* * * * * /root/shutdown_overheat.sh

答案1

库萨拉南达和戈古是对的。你应该检查一下计划任务邮件

简短回答

代替:

if [ "$TEMP" -gt "$MAXTEMP" ]; then
        wall $MSG
        logger System $MSG
        shutdown -h +2 $MSG
fi

和:

if [ "$TEMP" -gt "$MAXTEMP" ]; then
        wall $MSG
        logger System $MSG
        /usr/sbin/shutdown -h +2 $MSG
fi

或者你的二进制文件在哪里 ( whereis -b shutdown)。

长答案

我试图实施cron-apt并重新启动(如果/var/run/reboot-required存在)。我在日志中记录了所有预期的日志消息,但重新启动不起作用。这是我在 cron.d 中的内容,其中 cron-apt 放置其定义。我将所有内容分离到一个自定义脚本中,类似于您所做的。第二行只是为了测试。

$ sudo cat /etc/cron.d/cron-apt
45 3 * * *  root  "/usr/local/bin/cron-apt-server"
*/10 * * * *  root  "/usr/local/bin/cron-apt-server"

在每 10 分钟尝试一次之前,我尝试了 cron.hourly:

$ sudo ln -sf /usr/local/bin/cron-apt-server /etc/cron.hourly/

成功了!这下我更糊涂了!

我重新创建了我的脚本检查的文件:sudo touch /var/run/reboot-required{,.pkgs}; echo test | sudo tee -a /var/run/reboot-required.pkgs

并再次测试了 cron.d。然后注意到journalctl -f在我的 cron 工作结束后立即告诉我有关邮件的信息:

Mär 10 14:35:24 studentvm1 cron-apt-server[5260]: Rebooting for packages: test
Mär 10 14:35:24 studentvm1 CRON[3037]: pam_unix(cron:session): session closed for user root
Mär 10 14:35:24 studentvm1 postfix/pickup[1998]: A4346601AA6: uid=0 from=<root>
Mär 10 14:35:24 studentvm1 postfix/cleanup[5264]: A4346601AA6: message-id=<20210310133524.A4346601AA6@ubuntu-server>
Mär 10 14:35:24 studentvm1 postfix/qmgr[1999]: A4346601AA6: from=<root@ubuntu-server>, size=1444, nrcpt=1 (queue active)

Postfix 刚刚给我发了邮件,或者 root。

$ sudo mail
Mail version 8.1.2 01/15/2001.  Type ? for help.
"/var/mail/root": 21 messages 21 new

[...]

 N 21 root@ubuntu-serve  Wed Mar 10 14:30   38/1551  Cron <root@studentvm1>  "/usr/local/bin/cron-apt-server"

哎呀,我们忽略了 21 条消息。我们打开最后一张。

& 21

Message 21:
From root@ubuntu-server  Wed Mar 10 14:30:01 2021
X-Original-To: root
From: root@ubuntu-server (Cron Daemon)
To: root@ubuntu-server
Subject: Cron <root@studentvm1>  "/usr/local/bin/cron-apt-server"
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Cron-Env: <SHELL=/bin/sh>
X-Cron-Env: <HOME=/root>
X-Cron-Env: <PATH=/usr/bin:/bin>
X-Cron-Env: <LOGNAME=root>
Date: Wed, 10 Mar 2021 14:30:01 +0100 (CET)

[...]

+ [[ -f /var/run/reboot-required ]]
+ [[ server == \s\e\r\v\e\r ]]
++ cat /var/run/reboot-required.pkgs
+ msg='Rebooting for packages: test'
+ logger_notice 'Rebooting for packages: test'
+ logger -p notice -t cron-apt-server 'Rebooting for packages: test'
+ shutdown -r now 'Rebooting for packages: test'
/usr/local/bin/cron-apt-server: line 66: shutdown: command not found

& q

我就得到了它:line 66: shutdown: command not found我替换了shutdown并且/usr/sbin/shutdown它起作用了!

前缀为 的行是我为调试而设置的+生成的。set -x

编辑:另请参阅https://askubuntu.com/a/13733/40581

相关内容