Puppet Class: nova::compute::libvirt::version
- Inherited by:
-
nova::migration::libvirt
nova::compute::libvirt::qemu
- Defined in:
- manifests/compute/libvirt/version.pp
Overview
Class: nova::compute::libvirt::version
Try to detect the version by OS Right now this is only used by nova::compute::libvirt::qemu and the interesting version is with which release there will be libvirt 4.5 or higher.
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
# File 'manifests/compute/libvirt/version.pp', line 8
class nova::compute::libvirt::version {
case $facts['os']['family'] {
'RedHat': {
if versioncmp($facts['os']['release']['full'], '8') >= 0 {
$default = '5.6'
} elsif versioncmp($facts['os']['release']['full'], '7.6') >= 0 {
$default = '4.5'
} else {
$default = '3.9'
}
}
'Debian': {
if versioncmp($facts['os']['release']['full'], '18.04') >= 0 {
$default = '6.0'
} else {
$default = '4.0'
}
}
default: {
fail("Class['nova::compute::libvirt::version']: Unsupported osfamily: ${::osfamily}")
}
}
}
|