+sipb-xen-base (8.15) unstable; urgency=low
+
+ * put invirt-getconf in /usr/bin
+
+ -- Greg Price <price@mit.edu> Sat, 2 Aug 2008 21:58:36 -0400
+
sipb-xen-base (8.14) unstable; urgency=low
* using correct default paths in invirt-getconf
invirt-getconf authn.0.type
"""
-from invirt.config import default_src_path, default_cache_path, load
+from invirt.config import load
from sys import argv, exit, stderr, stdout
from optparse import OptionParser
parser = OptionParser(usage = '%prog [options] key',
description = __doc__.strip().split('\n\n')[0])
parser.add_option('-s', '--src',
- default = default_src_path,
+ default = '/etc/invirt/master.yaml',
help = 'the source YAML configuration file to read from')
parser.add_option('-c', '--cache',
- default = default_cache_path,
+ default = '/var/lib/invirt/invirt.json',
help = 'path to the JSON cache')
parser.add_option('-r', '--refresh',
action = 'store_true',
print conf
else:
import yaml
- try: dumper = yaml.CSafeDumper
- except: dumper = yaml.SafeDumper
yaml.dump(conf, stdout,
- Dumper = dumper, default_flow_style = False)
+ Dumper=yaml.CSafeDumper, default_flow_style=False)
except invirt_exception, ex:
print >> stderr, ex
return 1