mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Merge pull request #9312 from admiyo/freeipa
Inventory Plugin to get hostgroups from FreeIPA
This commit is contained in:
commit
c930ee4747
1 changed files with 19 additions and 0 deletions
19
plugins/inventory/freeipa.py
Executable file
19
plugins/inventory/freeipa.py
Executable file
|
@ -0,0 +1,19 @@
|
||||||
|
#!/usr/bin/python
|
||||||
|
|
||||||
|
import json
|
||||||
|
from ipalib import api
|
||||||
|
api.bootstrap(context='cli')
|
||||||
|
api.finalize()
|
||||||
|
api.Backend.xmlclient.connect()
|
||||||
|
inventory = {}
|
||||||
|
hostvars={}
|
||||||
|
meta={}
|
||||||
|
result =api.Command.hostgroup_find()['result']
|
||||||
|
for hostgroup in result:
|
||||||
|
inventory[hostgroup['cn'][0]] = { 'hosts': [host for host in hostgroup['member_host']]}
|
||||||
|
for host in hostgroup['member_host']:
|
||||||
|
hostvars[host] = {}
|
||||||
|
inventory['_meta'] = {'hostvars': hostvars}
|
||||||
|
inv_string = json.dumps( inventory)
|
||||||
|
print inv_string
|
||||||
|
|
Loading…
Reference in a new issue