Crontab -e @reboot 脚本在重新启动时不会启动

Crontab -e @reboot 脚本在重新启动时不会启动

我向 crontab -e 添加一个字符串

@reboot /home/user/start-ethminer.sh > /home/user/start-ethminer.log 2>&1

我的/home/user/start-ethminer.sh文件包含以下内容:

#!/bin/sh
screen -m -d -S eth /usr/bin/ethminer -G -F http://some_pool_address_here

但它永远不会在重新启动时启动,但是如果我运行 /home/user/start-ethminer.sh 我没有看到任何问题

相关内容