我有一个针对 bitcoind 的新贵脚本,它基于本主题中的脚本:https ://bitcointalk.org/index.php?topic=25518.0
我强烈需要重生未来的工作:如果发生某些事情,bitcoind 应该自动重启。我试图模仿这种情况,但暴发户没有重新启动该过程。
问题:如果发生了不好的事情,我怎样才能让暴发户(或其他东西)观看 bitcoind 并重新启动它?
实际脚本:
description "bitcoind"
start on filesystem
stop on runlevel [!2345]
oom never
expect daemon
respawn
respawn limit 10 60 # 10 times in 60 seconds
script
user=root
home=/root/.bitcoin/
cmd=/usr/bin/bitcoind
pidfile=$home/bitcoind.pid
# Don't change anything below here unless you know what you're doing
[[ -e $pidfile && ! -d "/proc/$(cat $pidfile)" ]] && rm $pidfile
[[ -e $pidfile && "$(cat /proc/$(cat $pidfile)/cmdline)" != $cmd* ]] && rm $pidfile
exec start-stop-daemon --start -c $user --chdir $home --pidfile $pidfile --startas $cmd -b -m
end script