]> review.fuel-infra Code Review - openstack-build/cinder-build.git/commitdiff
cinder-api also registering the volumev2 type.
authorThomas Goirand <thomas@goirand.fr>
Thu, 1 Oct 2015 16:16:16 +0000 (16:16 +0000)
committerThomas Goirand <thomas@goirand.fr>
Thu, 1 Oct 2015 16:16:16 +0000 (16:16 +0000)
debian/changelog
debian/cinder-api.postinst.in

index 261a314a863d9a25f27987f02f790be93994afb4..3f0d750429a91d0e116c398124008271e02d67e9 100644 (file)
@@ -2,6 +2,7 @@ cinder (2:7.0.0~rc1-2) experimental; urgency=medium
 
   * cinder-api depends on python-openstackclient.
   * Fixed cinder.conf generation.
+  * cinder-api also registering the volumev2 type.
 
  -- Thomas Goirand <zigo@debian.org>  Tue, 29 Sep 2015 13:23:42 +0000
 
index ff22918c622f8fec827250391e55e1bac53b65bd..c30bfd0034d73d62443e3fc430415c798f101e2f 100644 (file)
@@ -6,7 +6,8 @@ set -e
 
 if [ "$1" = "configure" ] || [ "$1" = "reconfigure" ] ; then
        . /usr/share/debconf/confmodule
-       pkgos_register_endpoint_postinst cinder cinder volume "Cinder Volume Service" 8776 /v1/'%(tenant_id)s'
+       pkgos_register_endpoint_postinst cinder cinder volume "OpenStack Block Storage" 8776 /v2/'%(tenant_id)s'
+       pkgos_register_endpoint_postinst cinder cinderv2 volumev2 "Cinder Volume Service" 8776 /v2/'%(tenant_id)s'
        db_stop
 fi