Add ceph-common to manila_share image

Manila supports Ceph as backend in which case the manila_share
image should bundle ceph-common

Change-Id: Ie0af337b195636bd6e6be93706a7e293c3ab6055
This commit is contained in:
Giulio Fidente 2017-06-30 15:35:36 +02:00
parent 4316793c5b
commit 8f5fc7c4ea
1 changed files with 2 additions and 1 deletions

View File

@ -9,7 +9,8 @@ LABEL maintainer="{{ maintainer }}" name="{{ image_name }}" build-date="{{ build
{% if base_distro in ['centos', 'oraclelinux', 'rhel'] %}
{% set manila_share_packages = [
'openstack-manila-share'
'openstack-manila-share',
'ceph-common'
] %}
{{ macros.install_packages(manila_share_packages | customizable("packages")) }}