added install file to do the basic install

This commit is contained in:
UpstreamData
2022-03-25 15:29:30 -06:00
parent 7809bfc0d1
commit 8864aa7b4b
3 changed files with 220 additions and 23 deletions

View File

@@ -52,6 +52,10 @@ class BaseMiner:
logging.warning(f"{self} raised an exception: {e}")
raise e
async def send_file(self, src, dest):
conn = self._get_ssh_connection()
await asyncssh.scp((conn, src), dest)
async def get_board_info(self):
return None