Eu tenho um script simples e tento executá-lo todas as 3h via crontab.
#!/bin/bash
/usr/bin/screen -SX fbbot quit;
/usr/bin/screen -dmS fbbot /home/vemu/.nvm/versions/node/v10.16.3/bin/node /home/vemu/fbbot/src/index.js;
Ele apenas reinicia a sessão da tela e se eu executar ela funciona, mas quando coloco ela crontab -e
fecha a tela, mas não inicia nova. Crontab:
0 3 * * * /home/vemu/fbbot/restart.sh >> /home/vemu/fbbot/log.txt 2>&1
O que está errado?