Just made some changes to oneBash to test out if Lyra2v2 can be mined. It works.
COIN="LYRA2V2"
LYRA2V2_WORKER="nvOC"
LYRA2V2_ADDRESS="bitcoin.wallet.address"
LYRA2V2_POOL="stratum+tcp://lyra2v2.mine.zpool.ca:4533"
Implementation section.
if [ $COIN == "LYRA2V2" ]
then
HCD='/home/m1/SPccminer/ccminer'
ADDR="$LYRA2V2_ADDRESS.$LYRA2V2_WORKER"
until $HCD -a lyra2v2 -o $LYRA2V2_POOL -u $ADDR -p x
do
echo "FAILURE; reinit in 5" >&2
sleep 5
done
fi
This is currently working with the SPccminer within the nvOC. Although I hope to see CCminer2.0 implemented soon. Or is there a way to insert our own miner software such as Alexis78?