Merge "Cinder backup fails due to absent multipath tools"

This commit is contained in:
Zuul 2023-03-27 14:23:37 +00:00 committed by Gerrit Code Review
commit 503488d550
1 changed files with 2 additions and 0 deletions

View File

@ -9,10 +9,12 @@ LABEL maintainer="{{ maintainer }}" name="{{ image_name }}" build-date="{{ build
{% if base_package_type == 'rpm' %}
{% set cinder_backup_packages = [
'device-mapper-multipath',
'nfs-utils'
] %}
{% elif base_package_type == 'deb' %}
{% set cinder_backup_packages = [
'multipath-tools',
'nfs-common'
] %}
{% endif %}