Add nova::compute::kvm class

Adds a class that installs the nova-compute-kvm package
This commit is contained in:
Dan Bode 2012-04-01 14:34:23 -07:00
parent 93d06fc061
commit 6f8955bffd

12
manifests/compute/kvm.pp Normal file
View File

@ -0,0 +1,12 @@
class nova::compute::kvm(
) {
nova_config {
'libvirt_type': value => 'kvm',
}
package { 'nova-compute-kvm':
ensure => present
}
}