Resposta curta

Resposta curta

Fundo

Estou tentando escrever um script (veja o final da pergunta) que verifica a temperatura no Raspberry PI e o desliga automaticamente se ficar muito alto. O script seria executado pelo cron, uma vez por minuto,como raiz.

O problema

O script é executado, a mensagem é impressa conforme o esperado, mas o desligamento não está agendado e não há mensagem de erro sobre o motivo. Na verdade, depois que o cron executa o script, cat /run/systemd/shutdown/schedulednão mostra nada (o arquivo não existe). Porém, após executar o script manualmente, (ainda como root), cat /run/systemd/shutdown/scheduledmostra que o desligamento está realmente agendado.

Pergunta

Por que o script funciona quando invocado manualmente, mas não quando invocado pelo cron (mesmo que esteja no crontab do root)?

Relacionado

Essa questãoé semelhante, mas a conclusão das respostas parece ser que adicionar desligamento araízescrontab (via crontab -ecomo eu) deve ficar bem.

Detalhes

O roteiro:/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

Executando o script manualmente (como 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

Script executado pelo 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

Crontab do root:

# crontab -l



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

* * * * * /root/shutdown_overheat.sh

Responder1

Kusalananda e Gogoud estão certos. Você deveria verificarcorreio cron.

Resposta curta

Substituir:

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

com:

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

Ou onde quer que seu binário esteja ( whereis -b shutdown).

Resposta longa

Eu estava tentando implementarcron-apte reinicie se /var/run/reboot-requiredexistir. Eu tinha todas as minhas mensagens de log esperadas no diário, mas a reinicialização não funcionaria. Aqui está o que eu tinha no cron.d onde o cron-apt coloca suas definições. Separei tudo em um script personalizado, semelhante ao que você fez. A segunda linha foi apenas para teste.

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

Antes de tentar a cada 10 minutos, tentei cron.hourly:

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

Isso funcionou! Agora fiquei ainda mais confuso!

Recriei os arquivos verificados pelo meu script:sudo touch /var/run/reboot-required{,.pkgs}; echo test | sudo tee -a /var/run/reboot-required.pkgs

E testei o cron.d novamente. Então percebi journalctl -fque me contava sobre o e-mail logo após meu cron job:

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 acabou de me enviar um e-mail, ou 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"

Ops, ignoramos 21 mensagens. Vamos abrir o último.

& 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

E aí estava: line 66: shutdown: command not foundtroquei shutdownpor /usr/sbin/shutdowne funcionou!

As linhas prefixadas com +são geradas pelas set -xquais eu configurei para depuração.

Editar: Veja tambémhttps://askubuntu.com/a/13733/40581

informação relacionada