Fantastic work. Really liking the build.
I ran into the problem where my over clocks were not getting set, but your fix seemed to correct that (started with one gpu before putting more in). After the fix, the gpufan error messages (I saw others were having that) are still showing up. Not a big issue since it looks like the fans are dynamic and should adjust up.
One suggestion for the next build, can you add ZEN cash to the list of available coins?
You can add it to oneBash yourself if you want to mine ZEN now:
Add your ZEN pool and address around line 86 the following:
ZEN_WORKER="nvOC"
ZEN_ADDRESS="your_address"
ZEN_POOL="mining.miningspeed.com"
ZEN_PORT="3063"
Add around line 815 the following block:
if [ $COIN == "ZEN" ]
then
HCD='/home/m1/zec/miner'
ZENADDR="$ZEN_ADDRESS.$ZEN_WORKER"
until $HCD --eexit 3 --fee $EWBF_PERCENT --pec --server $ZEN_POOL --user $ZENADDR --pass z --port $ZEN_PORT;
do
echo "FAILURE; reinit in 5" >&2
sleep 5
done
fi
Set COIN="ZEN" on line 22 and there you go.