You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

45 lines
1.4 KiB

7 years ago
7 years ago
  1. #! /usr/bin/python3
  2. # coding=utf-8
  3. from aw_sender import AwZabbix
  4. from SetupMinersClass import SetupMiner, read_conf
  5. import sys
  6. import json
  7. def reboot_miner(miner, z, conf):
  8. for miner_dat in z.lld()['data']:
  9. if miner_dat["{#MINERNAME}"] == miner:
  10. miner_ip = miner_dat['{#IP}']
  11. print(miner_ip)
  12. s = SetupMiner(miner_ip, conf=conf, telnets=['shutdown -r now'], sshs=['shutdown -r now'])
  13. print(s.result)
  14. break
  15. def main():
  16. conf = read_conf()
  17. print(conf)
  18. zabbix_server = conf["zabbix_server"]
  19. aw_url = conf["aw_url"]
  20. hostname = conf["hostname"]
  21. minerconf = {"sshuser": conf["sshuser"],
  22. "sshpass": conf["sshpass"],
  23. "sshport": conf["sshport"],
  24. "telnetuser": conf["telnetuser"],
  25. "telnetpass": conf["telnetpass"],
  26. "telnetport": conf["telnetport"]}
  27. z = AwZabbix(zabbix_server, aw_url, hostname)
  28. if len(sys.argv) == 1:
  29. print('Need miner name to reboot as arg')
  30. elif len(sys.argv) == 2 and sys.argv[1] == 'test':
  31. print(z.lld())
  32. elif len(sys.argv) == 2:
  33. # dc05-miner: CJ1554 04G hashrate = 0
  34. miner = "{} {}".format(sys.argv[1].split()[1], sys.argv[1].split()[2])
  35. print(miner)
  36. print(reboot_miner(miner, z, minerconf))
  37. if __name__ == '__main__':
  38. main()

Powered by TurnKey Linux.