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.

42 lines
1.4 KiB

4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
  1. #!/usr/bin/python2
  2. # coding=utf-8
  3. import ldap
  4. from proxmoxer import ProxmoxAPI
  5. pve_hosts = ['10.3.1.1', '10.2.1.1', '10.1.1.1']
  6. #pve_hosts = ['10.3.1.1']
  7. l = ldap.initialize("ldap://10.3.2.32:389")
  8. l.simple_bind_s("m.grebenkin@techgrow.local", "F5apmJ75GagMxc")
  9. ldap_result = l.search("CN=Users,DC=techgrow,DC=local", ldap.SCOPE_SUBTREE,
  10. "(&(objectClass=Person)(memberOf=CN=proxmox-admins,CN=Users,DC=techgrow,DC=local))", None)
  11. res_type, data = l.result(ldap_result)
  12. users = []
  13. # res_type
  14. for u in data:
  15. name = u[0].split(',')[0].split('=')[1]
  16. if u[1]['userAccountControl'][0] == '66048' or u[1]['userAccountControl'][0] == '512':
  17. users.append(name)
  18. #print users
  19. for host in pve_hosts:
  20. #print host
  21. proxmox = ProxmoxAPI(host, user='root@pam', password='Band@2014', verify_ssl=False)
  22. pve_users = proxmox.access.users.get()
  23. pve_usernames = []
  24. for u in pve_users:
  25. if 'techgrow.local' in u['userid']:
  26. pve_usernames.append(str(u['userid'].split('@')[0]))
  27. #print pve_usernames
  28. for u in users:
  29. userid = u + '@techgrow.local'
  30. if u not in pve_usernames:
  31. proxmox.access.users.post(userid=userid, groups='Admin')
  32. for u in pve_usernames:
  33. userid = u + '@techgrow.local'
  34. if u not in users:
  35. #print userid
  36. proxmox.access.users.delete(userid)

Powered by TurnKey Linux.