Skip to content

Commit 867f27e

Browse files
Zuulopenstack-gerrit
authored andcommitted
Merge "Cinder backup fails due to absent multipath tools" into stable/yoga
2 parents cb22a42 + 169178c commit 867f27e

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

docker/cinder/cinder-backup/Dockerfile.j2

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,22 +10,26 @@ LABEL maintainer="{{ maintainer }}" name="{{ image_name }}" build-date="{{ build
1010
{% if install_type == 'binary' %}
1111
{% if base_package_type == 'rpm' %}
1212
{% set cinder_backup_packages = [
13+
'device-mapper-multipath',
1314
'nfs-utils'
1415
] %}
1516
{% elif base_package_type == 'deb' %}
1617
{% set cinder_backup_packages = [
1718
'cinder-backup',
19+
'multipath-tools',
1820
'nfs-common'
1921
] %}
2022
{% endif %}
2123

2224
{% elif install_type == 'source' %}
2325
{% if base_package_type == 'rpm' %}
2426
{% set cinder_backup_packages = [
27+
'device-mapper-multipath',
2528
'nfs-utils'
2629
] %}
2730
{% elif base_package_type == 'deb' %}
2831
{% set cinder_backup_packages = [
32+
'multipath-tools',
2933
'nfs-common'
3034
] %}
3135
{% endif %}

0 commit comments

Comments
 (0)