From 95a786875ecc743c5d34de421527825158b0fe97 Mon Sep 17 00:00:00 2001 From: gcmalloc Date: Thu, 20 Nov 2014 20:55:42 +0100 Subject: [PATCH] supporting lxc cpu mode Fixing the default cpu_mode from None to none Change-Id: Ic5309bb63a21d1812e77b24f7047e490134ecc71 --- manifests/compute/libvirt.pp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/manifests/compute/libvirt.pp b/manifests/compute/libvirt.pp index c853c740a..044e4e420 100644 --- a/manifests/compute/libvirt.pp +++ b/manifests/compute/libvirt.pp @@ -20,9 +20,9 @@ # # [*libvirt_cpu_mode*] # (optional) The libvirt CPU mode to configure. Possible values -# include custom, host-model, None, host-passthrough. +# include custom, host-model, none, host-passthrough. # Defaults to 'host-model' if libvirt_virt_type is set to either -# kvm or qemu, otherwise defaults to 'None'. +# kvm or qemu, otherwise defaults to 'none'. # # [*libvirt_disk_cachemodes*] # (optional) A list of cachemodes for different disk types, e.g. @@ -98,7 +98,7 @@ class nova::compute::libvirt ( $libvirt_cpu_mode_real = 'host-model' } default: { - $libvirt_cpu_mode_real = 'None' + $libvirt_cpu_mode_real = 'none' } } } else {