forked from gitinsky/ansible-vagrant-inventory
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvagrant.py
executable file
·77 lines (62 loc) · 2.03 KB
/
vagrant.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# (c) 2015, Roman Belyakovsky <[email protected]>
import json
import string
import os
import argparse
import glob
#===
import os, sys, inspect
cmd_subfolder = os.path.realpath(os.path.abspath(os.path.join(os.path.split(inspect.getfile( inspect.currentframe() ))[0],".ansible")))
if cmd_subfolder not in sys.path:
sys.path.insert(0, cmd_subfolder)
from ansible import constants as C
from ansible.inventory import Inventory
from ansible.vars import VariableManager
from ansible.parsing.dataloader import DataLoader
invetoryfile = '.vagrant/provisioners/ansible/inventory'
parser = argparse.ArgumentParser(description='Process ansible inventory options')
parser.add_argument("-l", "--list", action='store_true', help="list of groups" )
parser.add_argument("-H", "--host", help="dictionary of variables for host")
args = parser.parse_args()
def prettyprint(string):
print json.dumps(string, indent=4, sort_keys=True)
variable_manager = VariableManager()
loader = DataLoader()
if C.DEFAULT_VAULT_PASSWORD_FILE:
loader.read_vault_password_file(C.DEFAULT_VAULT_PASSWORD_FILE)
inventory = Inventory(loader=loader, variable_manager=variable_manager, host_list=invetoryfile)
variable_manager.set_inventory(inventory)
#=====
def getHosts():
hosts = {}
for host in inventory.list_hosts():
vars = host.get_vars()
del vars['inventory_hostname'], vars['inventory_hostname_short']
hosts[host.name] = vars
return hosts
def getGroups():
groups = {}
group_objects = inventory.get_groups()
for group_name in group_objects.keys():
if group_name not in ['all','ungrouped']:
groups[group_name] = [ host.name for host in group_objects[group_name].get_hosts() ]
return groups
hosts = getHosts()
groups = getGroups()
hostlist = {
"_meta" : {
"hostvars": hosts
}
}
hostlist.update(groups)
if args.list:
prettyprint(hostlist)
elif args.host:
try:
prettyprint( hosts[args.host] )
except:
pass
else:
prettyprint(hosts)