summaryrefslogtreecommitdiffstats
path: root/nova/flags.py
diff options
context:
space:
mode:
authorEwan Mellor <ewan.mellor@citrix.com>2010-07-29 00:07:43 +0000
committerTarmac <>2010-07-29 00:07:43 +0000
commite45b95aa993e577323893406b97e4de55d1ad330 (patch)
treec283214a46ec381ebfdfe4b5423cb737bd2df106 /nova/flags.py
parent4e5737815bd62e0d78add8932ceb220b1ac3787d (diff)
parent04a6a0267e7dc0f4e587e43f23b4acf0dcef52fc (diff)
Adds initial support for XenAPI (not yet finished)
Diffstat (limited to 'nova/flags.py')
-rw-r--r--nova/flags.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/nova/flags.py b/nova/flags.py
index f63f82c3a..f35f5fa10 100644
--- a/nova/flags.py
+++ b/nova/flags.py
@@ -36,6 +36,7 @@ DEFINE_bool = DEFINE_bool
# Define any app-specific flags in their own files, docs at:
# http://code.google.com/p/python-gflags/source/browse/trunk/gflags.py#39
+DEFINE_string('connection_type', 'libvirt', 'libvirt, xenapi or fake')
DEFINE_integer('s3_port', 3333, 's3 port')
DEFINE_string('s3_host', '127.0.0.1', 's3 host')
#DEFINE_string('cloud_topic', 'cloud', 'the topic clouds listen on')
@@ -43,8 +44,6 @@ DEFINE_string('compute_topic', 'compute', 'the topic compute nodes listen on')
DEFINE_string('volume_topic', 'volume', 'the topic volume nodes listen on')
DEFINE_string('network_topic', 'network', 'the topic network nodes listen on')
-DEFINE_bool('fake_libvirt', False,
- 'whether to use a fake libvirt or not')
DEFINE_bool('verbose', False, 'show debug output')
DEFINE_boolean('fake_rabbit', False, 'use a fake rabbit')
DEFINE_bool('fake_network', False, 'should we use fake network devices and addresses')