Skip to content

Commit

Permalink
Fix cinder-backup: add missing sysfsutils,lsscsi package
Browse files Browse the repository at this point in the history
Closes-Bug: #2078886
Change-Id: Ia678484c001c66a9db675035dbb4505b0448bf58
Signed-off-by: Bui Doan Dang <[email protected]>
  • Loading branch information
doandang27052000 committed Sep 17, 2024
1 parent c63961f commit 546084b
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions docker/cinder/cinder-backup/Dockerfile.j2
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,16 @@ LABEL maintainer="{{ maintainer }}" name="{{ image_name }}" build-date="{{ build
{% if base_package_type == 'rpm' %}
{% set cinder_backup_packages = [
'device-mapper-multipath',
'nfs-utils'
'lsscsi',
'nfs-utils',
'sysfsutils'
] %}
{% elif base_package_type == 'deb' %}
{% set cinder_backup_packages = [
'lsscsi',
'multipath-tools',
'nfs-common'
'nfs-common',
'sysfsutils'
] %}
{% endif %}

Expand Down

0 comments on commit 546084b

Please sign in to comment.