Merge "Add sqlite package to manila-share"

This commit is contained in:
Zuul 2019-05-07 19:42:35 +00:00 committed by Gerrit Code Review
commit 64967045f7
1 changed files with 8 additions and 4 deletions

View File

@ -10,12 +10,14 @@ LABEL maintainer="{{ maintainer }}" name="{{ image_name }}" build-date="{{ build
{% set manila_share_packages = [
'openstack-manila-share',
'ceph-common'
'ceph-common',
'sqlite'
] %}
{% elif base_package_type == 'deb' %}
{% set manila_share_packages = [
'manila-share',
'ceph-common'
'ceph-common',
'sqlite3'
] %}
{% endif %}
@ -25,11 +27,13 @@ LABEL maintainer="{{ maintainer }}" name="{{ image_name }}" build-date="{{ build
{% elif install_type == 'source' %}
{% if base_package_type == 'rpm' %}
{% set manila_share_packages = [
'ceph-common'
'ceph-common',
'sqlite'
] %}
{% elif base_package_type == 'deb' %}
{% set manila_share_packages = [
'ceph-common'
'ceph-common',
'sqlite3'
] %}
{% endif %}