Merge "Use oslo_config choices support"

This commit is contained in:
Jenkins 2015-02-25 14:13:52 +00:00 committed by Gerrit Code Review
commit 392de701da

View File

@ -31,8 +31,8 @@ LOG = logging.getLogger(__name__)
OPTS = [
cfg.StrOpt('libvirt_type',
default='kvm',
help='Libvirt domain type (valid options are: '
'kvm, lxc, qemu, uml, xen).'),
choices=['kvm', 'lxc', 'qemu', 'uml', 'xen'],
help='Libvirt domain type.'),
cfg.StrOpt('libvirt_uri',
default='',
help='Override the default libvirt URI '