Browse Source

added proxmox and ldap group sync

master
Mikhail Grebenkin 6 years ago
parent
commit
5a779b2f16
2 changed files with 44 additions and 1 deletions
  1. +42
    -0
      proxmox.py
  2. +2
    -1
      zayavka_reader.py

+ 42
- 0
proxmox.py View File

@ -0,0 +1,42 @@
#!/usr/bin/python2
# coding=utf-8
import ldap
from proxmoxer import ProxmoxAPI
pve_hosts = ['10.3.1.1', '10.2.1.1', '10.1.1.1']
#pve_hosts = ['10.3.1.1']
l = ldap.initialize("ldap://10.3.2.32:389")
l.simple_bind_s("m.grebenkin@techgrow.local", "F5apmJ75GagMxc")
ldap_result = l.search("CN=Users,DC=techgrow,DC=local", ldap.SCOPE_SUBTREE,
"(&(objectClass=Person)(memberOf=CN=proxmox-admins,CN=Users,DC=techgrow,DC=local))", None)
res_type, data = l.result(ldap_result)
users = []
print res_type
for u in data:
name = u[0].split(',')[0].split('=')[1]
if u[1]['userAccountControl'][0] == '66048' or u[1]['userAccountControl'][0] == '512':
users.append(name)
print users
for host in pve_hosts:
print host
proxmox = ProxmoxAPI(host, user='root@pam', password='Band@2014', verify_ssl=False)
pve_users = proxmox.access.users.get()
pve_usernames = []
for u in pve_users:
if 'techgrow.local' in u['userid']:
pve_usernames.append(str(u['userid'].split('@')[0]))
print pve_usernames
for u in users:
userid = u + '@techgrow.local'
if u not in pve_usernames:
proxmox.access.users.post(userid=userid, groups='Admin')
for u in pve_usernames:
userid = u + '@techgrow.local'
if u not in users:
print userid
proxmox.access.users.delete(userid)

+ 2
- 1
zayavka_reader.py View File

@ -64,7 +64,8 @@ def users_make_zayavka(users):
'groupSet': str(i['Otdel']),
'enabled': enabled,
'pwChange': pwchange,
'toRemove': toremove
'toRemove': toremove,
'email': i['LoginEmail']
}
return res


Loading…
Cancel
Save

Powered by TurnKey Linux.