Post
Topic
Board Pools (Altcoins)
Re: [ANN][Profit-switching scrypt+ASIC Pool] multipool.us
by
sudwtf
on 18/10/2013, 19:27:30 UTC
Do your hot wallets auto-restart if they die, or must you do it manually?  i'm not certain LKY is online (Server Stats).

Here is a possible crontab script that you could edit for each wallet: (note the [ and ] are necessary)

#!/bin/sh
count=$(ps aux | grep [p]rimecoind | wc -l)
if [ $count -eq 0 ] ; then
   ~/coin/primecoin/primecoind -reindex -daemon
else
   echo primecoind already running.
fi