Created
November 10, 2016 09:40
-
-
Save Wicowyn/aefa2e014d4b1bd2a04cea29d20fbbe2 to your computer and use it in GitHub Desktop.
zcash miner on qrad
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
import sys | |
import qarnot | |
import os | |
import operator | |
# Edit 'samples.conf' to provide your own credentials | |
# Create a connection, from which all other objects will be derived | |
conn = qarnot.Connection('connection.conf') | |
# Create the tasks | |
task = conn.create_task('zcash', 'docker-network') | |
task.constants['DOCKER_REPO'] = 'marsmensch/zcash-cpuminer' | |
task.constants['DOCKER_TAG'] = 'latest' | |
task.constants['DOCKER_CMD'] = '-l zec.suprnova.cc:2142 -u yapiti.qrad -p kikoolol' | |
task.run() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment