~gandelman-a/charms/precise/keystone/redux

« back to all changes in this revision

Viewing changes to hooks/manager.py

  • Committer: Adam Gandelman
  • Date: 2011-12-24 01:34:15 UTC
  • Revision ID: adamg@canonical.com-20111224013415-66mtlmfsf9rj2s8j
A bit of cleanup

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!/usr/bin/python
2
 
 
 
2
#
 
3
# Bootstraps the keystone API so we can utilize its managment API natively
3
4
import keystone.manage
4
5
import keystone.backends as db
5
6
from keystone import version
12
13
(options, args) = config.parse_options(parser)
13
14
_config_file, conf = config.load_paste_config('admin', options, args)
14
15
db.configure_backends(conf.global_conf)
15