diff --git a/manifests/compute/libvirt.pp b/manifests/compute/libvirt.pp index 873305b46..95b79f52c 100644 --- a/manifests/compute/libvirt.pp +++ b/manifests/compute/libvirt.pp @@ -229,13 +229,6 @@ # reboot request is made. # Defaults to $facts['os_service_default'] # -# DEPRECATED PARAMETERS -# -# [*modular_libvirt*] -# (optional) Whether to enable modular libvirt daemons or use monolithic -# libvirt daemon. -# Defaults to undef -# class nova::compute::libvirt ( $ensure_package = 'present', $virt_type = 'kvm', @@ -281,8 +274,6 @@ class nova::compute::libvirt ( $max_queues = $facts['os_service_default'], $num_memory_encrypted_guests = $facts['os_service_default'], $wait_soft_reboot_seconds = $facts['os_service_default'], - # DEPRECATED PARAMETERS - $modular_libvirt = undef, ) inherits nova::params { include nova::deps @@ -291,10 +282,6 @@ class nova::compute::libvirt ( validate_legacy(Boolean, 'validate_bool', $migration_support) validate_legacy(Boolean, 'validate_bool', $manage_libvirt_services) - if $modular_libvirt != undef { - warning('The modular_libvirt parameter has been deprecated and has no effect.') - } - # cpu_mode has different defaults depending on hypervisor. if !$cpu_mode { case $virt_type { diff --git a/releasenotes/notes/libvirt-opts-further-cleanup-822207eb74910cff.yaml b/releasenotes/notes/libvirt-opts-further-cleanup-822207eb74910cff.yaml new file mode 100644 index 000000000..9c503e904 --- /dev/null +++ b/releasenotes/notes/libvirt-opts-further-cleanup-822207eb74910cff.yaml @@ -0,0 +1,4 @@ +--- +upgrade: + - | + The ``nova::compute::libvirt::modular_libvirt`` parameter has been removed.