~ubuntu-branches/ubuntu/quantal/nova/quantal-proposed

« back to all changes in this revision

Viewing changes to nova/crypto.py

  • Committer: Bazaar Package Importer
  • Author(s): Chuck Short
  • Date: 2010-12-13 10:17:01 UTC
  • mto: This revision was merged to the branch mainline in revision 8.
  • Revision ID: james.westby@ubuntu.com-20101213101701-txhhqbzsxw4avnxv
Tags: upstream-2011.1~bzr456
ImportĀ upstreamĀ versionĀ 2011.1~bzr456

Show diffs side-by-side

added added

removed removed

Lines of Context:
40
40
 
41
41
FLAGS = flags.FLAGS
42
42
flags.DEFINE_string('ca_file', 'cacert.pem', 'Filename of root CA')
43
 
flags.DEFINE_string('keys_path', utils.abspath('../keys'),
 
43
flags.DEFINE_string('keys_path', '$state_path/keys',
44
44
                    'Where we keep our keys')
45
 
flags.DEFINE_string('ca_path', utils.abspath('../CA'),
 
45
flags.DEFINE_string('ca_path', '$state_path/CA',
46
46
                    'Where we keep our root CA')
47
47
flags.DEFINE_boolean('use_intermediate_ca', False,
48
48
                     'Should we use intermediate CAs for each project?')