~ubuntu-branches/ubuntu/trusty/ironic/trusty-proposed

« back to all changes in this revision

Viewing changes to ironic/common/policy.py

  • Committer: Package Import Robot
  • Author(s): Chuck Short
  • Date: 2014-03-06 13:23:35 UTC
  • mfrom: (1.1.2)
  • Revision ID: package-import@ubuntu.com-20140306132335-5b49ji56jffxvtn4
Tags: 2014.1~b3-0ubuntu1
* New upstream release:
  - debian/patches/fix-requirements.patch: Dropped no longer needed.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# vim: tabstop=4 shiftwidth=4 softtabstop=4
2
 
 
3
1
# Copyright (c) 2011 OpenStack Foundation
4
2
# All Rights Reserved.
5
3
#
30
28
policy_opts = [
31
29
    cfg.StrOpt('policy_file',
32
30
               default='policy.json',
33
 
               help=_('JSON file representing policy')),
 
31
               help=_('JSON file representing policy.')),
34
32
    cfg.StrOpt('policy_default_rule',
35
33
               default='default',
36
 
               help=_('Rule checked when requested rule is not found')),
 
34
               help=_('Rule checked when requested rule is not found.')),
37
35
    ]
38
36
 
39
37
CONF = cfg.CONF