components/openstack/nova/patches/04-compute-hvtype.patch
changeset 5405 66fd59fecd68
parent 3998 5bd484384122
child 6562 77314d708e9f
equal deleted inserted replaced
5404:55e409ba4e72 5405:66fd59fecd68
     1 In-house patch to add the 'solariszones' hypervisor to Nova's list of
     1 In-house patch to add the 'solariszones' hypervisor to Nova's list of
     2 known hypervisors.  This patch has not yet been submitted upstream.
     2 known hypervisors.  This patch has not yet been submitted upstream.
     3 --- nova-2014.2.2/nova/compute/hvtype.py.orig	2014-11-13 11:47:50.409917449 -0700
     3 
     4 +++ nova-2014.2.2/nova/compute/hvtype.py	2014-11-13 11:48:11.032908030 -0700
     4 --- nova-2015.1.2/nova/compute/hv_type.py.~1~	2015-10-13 07:52:44.000000000 -0700
     5 @@ -38,6 +38,7 @@ OPENVZ = "openvz"
     5 +++ nova-2015.1.2/nova/compute/hv_type.py	2015-12-31 19:56:40.193951927 -0800
       
     6 @@ -40,6 +40,7 @@ OPENVZ = "openvz"
     6  PARALLELS = "parallels"
     7  PARALLELS = "parallels"
     7  PHYP = "phyp"
     8  PHYP = "phyp"
     8  QEMU = "qemu"
     9  QEMU = "qemu"
     9 +SOLARISZONES = "solariszones"
    10 +SOLARISZONES = "solariszones"
    10  TEST = "test"
    11  TEST = "test"
    11  UML = "uml"
    12  UML = "uml"
    12  VBOX = "vbox"
    13  VBOX = "vbox"
    13 @@ -56,6 +57,7 @@ ALL = (
    14 @@ -61,6 +62,7 @@ ALL = (
    14      PARALLELS,
    15      PARALLELS,
    15      PHYP,
    16      PHYP,
    16      QEMU,
    17      QEMU,
    17 +    SOLARISZONES,
    18 +    SOLARISZONES,
    18      TEST,
    19      TEST,