~ubuntu-branches/ubuntu/saucy/nova/saucy-proposed

« back to all changes in this revision

Viewing changes to nova/tests/fake_flags.py

  • Committer: Package Import Robot
  • Author(s): Chuck Short
  • Date: 2012-05-24 13:12:53 UTC
  • mfrom: (1.1.55)
  • Revision ID: package-import@ubuntu.com-20120524131253-ommql08fg1en06ut
Tags: 2012.2~f1-0ubuntu1
* New upstream release.
* Prepare for quantal:
  - Dropped debian/patches/upstream/0006-Use-project_id-in-ec2.cloud._format_image.patch
  - Dropped debian/patches/upstream/0005-Populate-image-properties-with-project_id-again.patch
  - Dropped debian/patches/upstream/0004-Fixed-bug-962840-added-a-test-case.patch
  - Dropped debian/patches/upstream/0003-Allow-unprivileged-RADOS-users-to-access-rbd-volumes.patch
  - Dropped debian/patches/upstream/0002-Stop-libvirt-test-from-deleting-instances-dir.patch
  - Dropped debian/patches/upstream/0001-fix-bug-where-nova-ignores-glance-host-in-imageref.patch 
  - Dropped debian/patches/0001-fix-useexisting-deprecation-warnings.patch
* debian/control: Add python-keystone as a dependency. (LP: #907197)
* debian/patches/kombu_tests_timeout.patch: Refreshed.
* debian/nova.conf, debian/nova-common.postinst: Convert to new ini
  file configuration
* debian/patches/nova-manage_flagfile_location.patch: Refreshed

Show diffs side-by-side

added added

removed removed

Lines of Context:
37
37
flags.DECLARE('iscsi_num_targets', 'nova.volume.driver')
38
38
FLAGS.set_default('iscsi_num_targets', 8)
39
39
FLAGS.set_default('verbose', True)
40
 
FLAGS.set_default('sqlite_db', "tests.sqlite")
 
40
FLAGS.set_default('sql_connection', "sqlite://")
41
41
FLAGS.set_default('use_ipv6', True)
42
42
FLAGS.set_default('flat_network_bridge', 'br100')
43
43
FLAGS.set_default('sqlite_synchronous', False)
44
44
flags.DECLARE('policy_file', 'nova.policy')
45
45
flags.DECLARE('compute_scheduler_driver', 'nova.scheduler.multi')
46
 
FLAGS.set_default('policy_file', 'nova/tests/policy.json')
 
46
FLAGS.set_default('api_paste_config', '$state_path/etc/nova/api-paste.ini')