The old python backup software.
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.

30 lines
638 B

2 years ago
  1. #! /usr/bin/env python
  2. import sys
  3. import main_backuper as mainscr
  4. def f_main():
  5. conf, errorcode = mainscr.conf_read()
  6. hosts, errorcode = mainscr.hosts_read(conf["hosts"])
  7. inp = []
  8. for host in hosts:
  9. if host[2] == "up" :
  10. inp.append(host[0])
  11. f_json_print(inp)
  12. def f_json_print(inp):
  13. first = True
  14. print("{")
  15. print("\t\"data\":[")
  16. for key in inp:
  17. if not first:
  18. sys.stdout.write(",")
  19. else:
  20. first = False
  21. sys.stdout.write("\n\t\t{\"{#HOST}\":\"" + key + "\"}")
  22. print("\n\t]")
  23. print("}")
  24. if __name__ == '__main__':
  25. f_main()

Powered by TurnKey Linux.