2012-04-13 20:50:30 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
import json
|
|
|
|
import sys
|
|
|
|
|
|
|
|
from optparse import OptionParser
|
|
|
|
|
|
|
|
parser = OptionParser()
|
|
|
|
parser.add_option('-l', '--list', default=False, dest="list_hosts", action="store_true")
|
|
|
|
parser.add_option('-H', '--host', default=None, dest="host")
|
|
|
|
parser.add_option('-e', '--extra-vars', default=None, dest="extra")
|
|
|
|
|
|
|
|
options, args = parser.parse_args()
|
|
|
|
|
|
|
|
systems = {
|
2012-10-10 18:17:24 +02:00
|
|
|
"ungrouped": [ "jupiter", "saturn" ],
|
2012-04-13 20:50:30 +02:00
|
|
|
"greek": [ "zeus", "hera", "poseidon" ],
|
2012-10-10 18:35:45 +02:00
|
|
|
"norse": [ "thor", "odin", "loki" ],
|
|
|
|
"major-god": [ "zeus", "odin" ],
|
2012-04-13 20:50:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
variables = {
|
|
|
|
"thor": {
|
|
|
|
"hammer": True
|
2012-10-10 18:35:45 +02:00
|
|
|
},
|
|
|
|
"zeus": {},
|
2012-04-13 20:50:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if options.list_hosts == True:
|
|
|
|
print json.dumps(systems)
|
|
|
|
sys.exit(0)
|
|
|
|
|
|
|
|
if options.host is not None:
|
|
|
|
if options.extra:
|
|
|
|
k,v = options.extra.split("=")
|
|
|
|
variables[options.host][k] = v
|
|
|
|
print json.dumps(variables[options.host])
|
|
|
|
sys.exit(0)
|
|
|
|
|
|
|
|
parser.print_help()
|
|
|
|
sys.exit(1)
|