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.

88 lines
2.4 KiB

2 years ago
  1. #!/usr/bin/python
  2. # coding=utf-8
  3. import subprocess
  4. import logging
  5. import datetime
  6. import random
  7. import os
  8. def writedata(data, path="/tmp"):
  9. errorcode = ""
  10. now_date = datetime.date.today()
  11. outfile = path + str(str(now_date)+ str(random.randint(1, 1000)))
  12. logging.debug("file = " + outfile)
  13. if not os.path.exists(path):
  14. try:
  15. os.mkdir(path)
  16. except Exception as exept:
  17. errorcode = exept
  18. return errorcode
  19. if not os.path.isdir(path):
  20. errorcode = "Dir to write is not dir"
  21. return errorcode
  22. if not os.path.exists(outfile):
  23. try:
  24. f = open(outfile, "w")
  25. except Exception as exept:
  26. errorcode = exept
  27. return errorcode
  28. else:
  29. in_file = ""
  30. for line in data:
  31. in_file = in_file + line
  32. f.write(in_file)
  33. logging.debug("zabbix-file writed")
  34. finally:
  35. f.close()
  36. else:
  37. errorcode = "file exist"
  38. return errorcode
  39. return outfile, errorcode
  40. def sendfile(file, server="", host=""):
  41. errorcode = ""
  42. if not os.path.exists(file) and not os.path.isfile(file):
  43. errorcode = "can't send. No such file"
  44. return errorcode
  45. args = " --input-file " + file
  46. if (not server) or (not host):
  47. args = args + " --config /etc/zabbix/zabbix_agentd.conf"
  48. else:
  49. args = args + "--host " + host + "--zabbix-server " + server
  50. cmd = "/usr/bin/zabbix_sender " + "args"
  51. try:
  52. os.system(cmd)
  53. except Exception as exept:
  54. errorcode = exept
  55. return errorcode
  56. def sendkey(keys, server="", host=""):
  57. errorcode = ""
  58. args = ""
  59. string = ""
  60. if (not server) or (not host):
  61. args = args + "--config /etc/zabbix/zabbix_agentd.conf"
  62. else:
  63. args = args + "--host " + host + " --zabbix-server " + server + " -vv "
  64. cmd = "/usr/bin/zabbix_sender"
  65. startargs = ""
  66. print keys
  67. for key in keys:
  68. startargs = args + " --key " +str(key) + " --value " + str(keys[key])
  69. print(startargs)
  70. p = subprocess.Popen([cmd + " " + startargs], stdout=subprocess.PIPE, shell=True)
  71. for line in p.stdout.readlines():
  72. print line
  73. def main():
  74. print "main function"
  75. if __name__ == '__main__':
  76. main()
  77. sendkey({"key1": "val1", "key2": "val2", }, "192.168.4.141", "mix")

Powered by TurnKey Linux.