X-Git-Url: http://xvm.mit.edu/gitweb/invirt/packages/invirt-base.git/blobdiff_plain/4fbc42e66b20d479ea33c2cd5b930b28639e7700..d030720f0845cc4f5ef0b68997c780537c69de7f:/files/usr/sbin/invirt-getconf diff --git a/files/usr/sbin/invirt-getconf b/files/usr/sbin/invirt-getconf index 4f10261..bb4fd80 100755 --- a/files/usr/sbin/invirt-getconf +++ b/files/usr/sbin/invirt-getconf @@ -16,8 +16,8 @@ Examples: invirt-getconf authn.0.type """ -from invirt.config import load -from sys import argv, exit, stderr +from invirt.config import default_src_path, default_cache_path, load +from sys import argv, exit, stderr, stdout from optparse import OptionParser class invirt_exception(Exception): pass @@ -27,10 +27,10 @@ def main(argv): parser = OptionParser(usage = '%prog [options] key', description = __doc__.strip().split('\n\n')[0]) parser.add_option('-s', '--src', - default = '/etc/invirt/master.yaml', + default = default_src_path, help = 'the source YAML configuration file to read from') parser.add_option('-c', '--cache', - default = '/var/lib/invirt/invirt.json', + default = default_cache_path, help = 'path to the JSON cache') parser.add_option('-r', '--refresh', action = 'store_true', @@ -50,7 +50,7 @@ def main(argv): conf = load(opts.src, opts.cache, opts.refresh) for i, component in enumerate(components): progress = '.'.join(components[:i]) - if type(conf) not in [dict, list]: + if type(conf) not in (dict, list): raise invirt_exception( '%s: node has no children (atomic datum)' % progress) if type(conf) == list: @@ -65,9 +65,10 @@ def main(argv): '%s: index %s out of range' % (progress, component)) if opts.ls: - if type(conf) not in [dict, list]: + if type(conf) not in (dict, list): raise invirt_exception( - '%s: node has no children (atomic datum)' % progress) + '%s: node has no children (atomic datum)' + % '.'.join(components)) if type(conf) == list: for i in xrange(len(conf)): print i @@ -75,7 +76,14 @@ def main(argv): for k in conf.iterkeys(): print k else: - print conf + if type(conf) not in (dict, list): + print conf + else: + import yaml + try: dumper = yaml.CSafeDumper + except: dumper = yaml.SafeDumper + yaml.dump(conf, stdout, + Dumper = dumper, default_flow_style = False) except invirt_exception, ex: print >> stderr, ex return 1