[MOS10.0] [xenial] Update cinder package 26/24726/23
authorAndrii Kroshchenko <akroshchenko@mirantis.com>
Tue, 9 Aug 2016 14:31:07 +0000 (17:31 +0300)
committerAndrii Kroshchenko <akroshchenko@mirantis.com>
Mon, 15 Aug 2016 15:52:34 +0000 (18:52 +0300)
  * Update to 9.0.0~b2
  * Source: https://anonscm.debian.org/cgit/openstack/cinder
    commit 9fcb40250012a41b83c080454beaf9e2918cbe1a
  * Update dependencies

Change-Id: Ifd1cd72349909a04806e234da4108955522dde12

28 files changed:
xenial/debian/README.source [new file with mode: 0644]
xenial/debian/changelog
xenial/debian/cinder-api.lintian-overrides
xenial/debian/cinder-api.postinst.in
xenial/debian/cinder-api.templates
xenial/debian/cinder-doc.doc-base [new file with mode: 0644]
xenial/debian/cinder.conf [new file with mode: 0644]
xenial/debian/control
xenial/debian/copyright
xenial/debian/gbp.conf
xenial/debian/patches/Missing_configuration_opts_from_cinder.sample.conf.patch [deleted file]
xenial/debian/patches/install-missing-files.patch [new file with mode: 0644]
xenial/debian/patches/series
xenial/debian/po/cs.po
xenial/debian/po/da.po
xenial/debian/po/de.po
xenial/debian/po/es.po
xenial/debian/po/fr.po
xenial/debian/po/it.po
xenial/debian/po/ja.po
xenial/debian/po/nl.po
xenial/debian/po/pt.po
xenial/debian/po/pt_BR.po [new file with mode: 0644]
xenial/debian/po/ru.po
xenial/debian/po/sv.po
xenial/debian/po/templates.pot
xenial/debian/rules
xenial/debian/watch

diff --git a/xenial/debian/README.source b/xenial/debian/README.source
new file mode 100644 (file)
index 0000000..a1b8ef9
--- /dev/null
@@ -0,0 +1,2 @@
+The package is +dfsg1 because of the removal of non-free minified
+bootstrap 3.x .js and .css in the api-ref folder.
index 30318c455c60bfc019e3e83cbb27c54a2a5a6c9e..9bf0277016ce3085b87ddb91f121f09823e1a78b 100644 (file)
@@ -1,7 +1,28 @@
+cinder (2:9.0.0~b2-1~u16.04+mos1) mos10.0; urgency=medium
+
+  * Update to 9.0.0~b2
+  * Source: https://anonscm.debian.org/cgit/openstack/cinder
+    commit 9fcb40250012a41b83c080454beaf9e2918cbe1a
+  * Update dependencies
+  * d/patch:
+    -- delete no-zfssa-tests.patch
+
+ -- Andrii Kroshchenko <akroshchenko@mirantis.com>  Tue, 09 Aug 2016 17:10:08 +0300
+
+cinder (2:9.0.0~b2-1) experimental; urgency=medium
+
+  * New upstream release.
+  * Fixed (build-)depends for this release.
+  * Rebased remove-zfssa-from-opts.py.patch.
+  * Updated Danish translation of the debconf templates (Closes: #830641).
+  * Blacklist VolumeMigrationTestCase.test_retype_volume_driver_success.
+
+ -- Thomas Goirand <zigo@debian.org>  Fri, 15 Jul 2016 16:35:01 +0200
+
 cinder (2:9.0.0~b1-1~u16.04+mos1) mos10.0; urgency=medium
 
   * Update to 9.0.0.0b1
-  * Update build and runtime dependencies 
+  * Update build and runtime dependencies
 
  -- Mikhail Ivanov <mivanov@mirantis.com>  Tue, 28 Jun 2016 19:46:02 +0300
 
index 583fbf0db2c7aa6f73bf3d20ec0e3f3e8da0fe72..a9a2a018dd027cc1b3572921b468c482eace100b 100644 (file)
@@ -1,5 +1,7 @@
 cinder-api: unused-debconf-template cinder/register-endpoint
 cinder-api: unused-debconf-template cinder/keystone-ip
-cinder-api: unused-debconf-template cinder/keystone-auth-token
+cinder-api: unused-debconf-template cinder/keystone-admin-name
+cinder-api: unused-debconf-template cinder/keystone-project-name
+cinder-api: unused-debconf-template cinder/keystone-admin-password
 cinder-api: unused-debconf-template cinder/endpoint-ip
 cinder-api: unused-debconf-template cinder/region-name
index 7cea903d6542b4325e606820bc211ddb630de427..ebb262fd105169082d9308c3d45cdcf579e968ed 100644 (file)
@@ -14,33 +14,43 @@ if [ "$1" = "configure" ] || [ "$1" = "reconfigure" ] ; then
                # Setup the v1 endpoint
                db_get ${PKG_NAME}/keystone-ip
                KEYSTONE_ENDPOINT_IP=`echo ${RET} | egrep '^[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}$'`
-               db_get ${PKG_NAME}/keystone-auth-token
-               AUTH_TOKEN=${RET}
                db_get ${PKG_NAME}/endpoint-ip
                PKG_ENDPOINT_IP=`echo ${RET} | egrep '^[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}$'`
                db_get ${PKG_NAME}/region-name
                REGION_NAME=${RET}
+               db_get ${PKG_NAME}/keystone-project-name
+               KEYSTONE_PROJECT_NAME=${RET}
+               db_get ${PKG_NAME}/keystone-admin-name
+               KEYSTONE_ADMIN_NAME=${RET}
+               db_get ${PKG_NAME}/keystone-admin-password
+               KEYSTONE_ADMIN_PASSWORD=${RET}
+
+               if [ -n "${KEYSTONE_ENDPOINT_IP}" ] && [ -n "${PKG_ENDPOINT_IP}" ] && [ -n "${REGION_NAME}" ] && [ -n "${KEYSTONE_PROJECT_NAME}" ] && [ -n "${KEYSTONE_ADMIN_NAME}" ]  && [ -n "${KEYSTONE_ADMIN_PASSWORD}" ] ; then
+                       export OS_PROJECT_DOMAIN_ID=default
+                       export OS_USER_DOMAIN_ID=default
+                       export OS_TENANT_NAME=${KEYSTONE_PROJECT_NAME}
+                       export OS_PROJECT_NAME=${KEYSTONE_PROJECT_NAME}
+                       export OS_USERNAME=${KEYSTONE_ADMIN_NAME}
+                       export OS_PASSWORD=${KEYSTONE_ADMIN_PASSWORD}
+                       export OS_AUTH_URL=http://${KEYSTONE_ENDPOINT_IP}:35357/v3/
+                       export OS_IDENTITY_API_VERSION=3
+                       export OS_AUTH_VERSION=3
+                       export OS_PROJECT_DOMAIN_ID=default
+                       export OS_USER_DOMAIN_ID=default
+                       export OS_NO_CACHE=1
 
-               if [ -n "${KEYSTONE_ENDPOINT_IP}" ] && [ -n "${PKG_ENDPOINT_IP}" ] && [ -n "${REGION_NAME}" ] && [ -n "${AUTH_TOKEN}" ] ; then
                        SERVICE_NAME=cinder
                        SERVICE_TYPE=volume
                        SERVICE_DESC="OpenStack Block Storage"
                        SERVICE_PORT=8776
                        SERVICE_URL=/v1/'%(tenant_id)s'
                        echo "Registering service and endpoints for ${SERVICE_NAME} with type ${SERVICE_TYPE} at http://${PKG_ENDPOINT_IP}:${SERVICE_PORT}${SERVICE_URL}"
-                       NUM_LINES=$(openstack --os-token ${AUTH_TOKEN} --os-url=http://${KEYSTONE_ENDPOINT_IP}:35357/v3/ --os-domain-name default --os-identity-api-version=3 service list --format=csv | q -d , -H 'SELECT ID FROM - WHERE `Type`="'${SERVICE_TYPE}'"' | wc -l)
+                       NUM_LINES=$(openstack service list --format=csv | q -d , -H 'SELECT ID FROM - WHERE `Type`="'${SERVICE_TYPE}'"' | wc -l)
                        if [ "${NUM_LINES}" = "0" ] ; then
-                               openstack --os-token ${AUTH_TOKEN} --os-url=http://${KEYSTONE_ENDPOINT_IP}:35357/v3/ --os-domain-name default --os-identity-api-version=3 service create \
-                                       --name=${SERVICE_NAME} --description="${SERVICE_DESC}" ${SERVICE_TYPE}
-
-                               openstack --os-token ${AUTH_TOKEN} --os-url=http://${KEYSTONE_ENDPOINT_IP}:35357/v3/ --os-domain-name default --os-identity-api-version=3 endpoint create \
-                                       --region "${REGION_NAME}" ${SERVICE_NAME} public http://${PKG_ENDPOINT_IP}:${SERVICE_PORT}${SERVICE_URL}
-
-                               openstack --os-token ${AUTH_TOKEN} --os-url=http://${KEYSTONE_ENDPOINT_IP}:35357/v3/ --os-domain-name default --os-identity-api-version=3 endpoint create \
-                                       --region "${REGION_NAME}" ${SERVICE_NAME} internal http://${PKG_ENDPOINT_IP}:${SERVICE_PORT}${SERVICE_URL}
-
-                               openstack --os-token ${AUTH_TOKEN} --os-url=http://${KEYSTONE_ENDPOINT_IP}:35357/v3/ --os-domain-name default --os-identity-api-version=3 endpoint create \
-                                       --region "${REGION_NAME}" ${SERVICE_NAME} admin http://${PKG_ENDPOINT_IP}:${SERVICE_PORT}${SERVICE_URL}
+                               openstack service create --name=${SERVICE_NAME} --description="${SERVICE_DESC}" ${SERVICE_TYPE}
+                               openstack endpoint create --region "${REGION_NAME}" ${SERVICE_NAME} public   http://${PKG_ENDPOINT_IP}:${SERVICE_PORT}${SERVICE_URL}
+                               openstack endpoint create --region "${REGION_NAME}" ${SERVICE_NAME} internal http://${PKG_ENDPOINT_IP}:${SERVICE_PORT}${SERVICE_URL}
+                               openstack endpoint create --region "${REGION_NAME}" ${SERVICE_NAME} admin    http://${PKG_ENDPOINT_IP}:${SERVICE_PORT}${SERVICE_URL}
                        fi
 
                        SERVICE_NAME=cinderv2
@@ -49,19 +59,12 @@ if [ "$1" = "configure" ] || [ "$1" = "reconfigure" ] ; then
                        SERVICE_PORT=8776
                        SERVICE_URL=/v2/'%(tenant_id)s'
                        echo "Registering service and endpoints for ${SERVICE_NAME} with type ${SERVICE_TYPE} at http://${PKG_ENDPOINT_IP}:${SERVICE_PORT}${SERVICE_URL}"
-                       NUM_LINES=$(openstack --os-token ${AUTH_TOKEN} --os-url=http://${KEYSTONE_ENDPOINT_IP}:35357/v3/ --os-domain-name default --os-identity-api-version=3 service list --format=csv | q -d , -H 'SELECT ID FROM - WHERE `Type`="'${SERVICE_TYPE}'"' | wc -l)
+                       NUM_LINES=$(openstack service list --format=csv | q -d , -H 'SELECT ID FROM - WHERE `Type`="'${SERVICE_TYPE}'"' | wc -l)
                        if [ "${NUM_LINES}" = "0" ] ; then
-                               openstack --os-token ${AUTH_TOKEN} --os-url=http://${KEYSTONE_ENDPOINT_IP}:35357/v3/ --os-domain-name default --os-identity-api-version=3 service create \
-                                       --name=${SERVICE_NAME} --description="${SERVICE_DESC}" ${SERVICE_TYPE}
-
-                               openstack --os-token ${AUTH_TOKEN} --os-url=http://${KEYSTONE_ENDPOINT_IP}:35357/v3/ --os-domain-name default --os-identity-api-version=3 endpoint create \
-                                       --region "${REGION_NAME}" ${SERVICE_NAME} public http://${PKG_ENDPOINT_IP}:${SERVICE_PORT}${SERVICE_URL}
-
-                               openstack --os-token ${AUTH_TOKEN} --os-url=http://${KEYSTONE_ENDPOINT_IP}:35357/v3/ --os-domain-name default --os-identity-api-version=3 endpoint create \
-                                       --region "${REGION_NAME}" ${SERVICE_NAME} internal http://${PKG_ENDPOINT_IP}:${SERVICE_PORT}${SERVICE_URL}
-
-                               openstack --os-token ${AUTH_TOKEN} --os-url=http://${KEYSTONE_ENDPOINT_IP}:35357/v3/ --os-domain-name default --os-identity-api-version=3 endpoint create \
-                                       --region "${REGION_NAME}" ${SERVICE_NAME} admin http://${PKG_ENDPOINT_IP}:${SERVICE_PORT}${SERVICE_URL}
+                               openstack service create --name=${SERVICE_NAME} --description="${SERVICE_DESC}" ${SERVICE_TYPE}
+                               openstack endpoint create --region "${REGION_NAME}" ${SERVICE_NAME} public   http://${PKG_ENDPOINT_IP}:${SERVICE_PORT}${SERVICE_URL}
+                               openstack endpoint create --region "${REGION_NAME}" ${SERVICE_NAME} internal http://${PKG_ENDPOINT_IP}:${SERVICE_PORT}${SERVICE_URL}
+                               openstack endpoint create --region "${REGION_NAME}" ${SERVICE_NAME} admin    http://${PKG_ENDPOINT_IP}:${SERVICE_PORT}${SERVICE_URL}
                        fi
 #                      pkgos_register_endpoint_postinst cinder cinder volume "Cinder Volume Service" 8776 /v1/'%(tenant_id)s'
 #                      pkgos_register_endpoint_postinst cinder cinderv2 volumev2 "Cinder Volume Service" 8776 /v2/'%(tenant_id)s'
@@ -72,7 +75,7 @@ if [ "$1" = "configure" ] || [ "$1" = "reconfigure" ] ; then
        else
                echo "Will not register "${SERVICE_NAME}" endpoint this time (no user request for it)."
        fi
-       db_unregister ${PKG_NAME}/keystone-auth-token
+       db_unregister ${PKG_NAME}/keystone-admin-password
        db_stop
 fi
 
index 0728356933f2fb2124a737eb47da7393238dda01..d34d7188d83fd878e8bb1b03c06d7191a422ce03 100644 (file)
@@ -24,11 +24,25 @@ _Description: Keystone server IP address:
  Please enter the IP address of the Keystone server, so that cinder-api can
  contact Keystone to do the Cinder service and endpoint creation.
 
-Template: cinder/keystone-auth-token
+Template: cinder/keystone-admin-name
+Type: string
+Default: admin
+_Description: Keystone admin name:
+ To register the service endpoint, this package needs to know the Admin login,
+ name, project name, and password to the Keystone server.
+
+Template: cinder/keystone-project-name
+Type: string
+Default: admin
+_Description: Keystone admin project name:
+ To register the service endpoint, this package needs to know the Admin login,
+ name, project name, and password to the Keystone server.
+
+Template: cinder/keystone-admin-password
 Type: password
-_Description: Keystone authentication token:
- To configure its endpoint in Keystone, cinder-api needs the Keystone
authentication token.
+_Description: Keystone admin password:
+ To register the service endpoint, this package needs to know the Admin login,
name, project name, and password to the Keystone server.
 
 Template: cinder/endpoint-ip
 Type: string
diff --git a/xenial/debian/cinder-doc.doc-base b/xenial/debian/cinder-doc.doc-base
new file mode 100644 (file)
index 0000000..268db89
--- /dev/null
@@ -0,0 +1,9 @@
+Document: cinder
+Title: cinder Documentation
+Author: N/A
+Abstract: Sphinx documentation for Cinder
+Section: Programming/Python
+
+Format: HTML
+Index: /usr/share/doc/cinder-doc/html/index.html
+Files: /usr/share/doc/cinder-doc/html/*
diff --git a/xenial/debian/cinder.conf b/xenial/debian/cinder.conf
new file mode 100644 (file)
index 0000000..7e09892
--- /dev/null
@@ -0,0 +1,2849 @@
+[DEFAULT]
+
+#
+# Options defined in oslo.messaging
+#
+
+# ZeroMQ bind address. Should be a wildcard (*), an ethernet
+# interface, or IP. The "host" option should point or resolve
+# to this address. (string value)
+#rpc_zmq_bind_address=*
+
+# MatchMaker driver. (string value)
+#rpc_zmq_matchmaker=oslo_messaging._drivers.matchmaker.MatchMakerLocalhost
+
+# ZeroMQ receiver listening port. (integer value)
+#rpc_zmq_port=9501
+
+# Number of ZeroMQ contexts, defaults to 1. (integer value)
+#rpc_zmq_contexts=1
+
+# Maximum number of ingress messages to locally buffer per
+# topic. Default is unlimited. (integer value)
+#rpc_zmq_topic_backlog=<None>
+
+# Directory for holding IPC sockets. (string value)
+#rpc_zmq_ipc_dir=/var/run/openstack
+
+# Name of this node. Must be a valid hostname, FQDN, or IP
+# address. Must match "host" option, if running Nova. (string
+# value)
+#rpc_zmq_host=cinder
+
+# Seconds to wait before a cast expires (TTL). Only supported
+# by impl_zmq. (integer value)
+#rpc_cast_timeout=30
+
+# Heartbeat frequency. (integer value)
+#matchmaker_heartbeat_freq=300
+
+# Heartbeat time-to-live. (integer value)
+#matchmaker_heartbeat_ttl=600
+
+# Size of RPC thread pool. (integer value)
+#rpc_thread_pool_size=64
+
+# Driver or drivers to handle sending notifications. (multi
+# valued)
+#notification_driver=
+
+# AMQP topic used for OpenStack notifications. (list value)
+# Deprecated group/name - [rpc_notifier2]/topics
+#notification_topics=notifications
+
+# Seconds to wait for a response from a call. (integer value)
+#rpc_response_timeout=60
+
+# A URL representing the messaging driver to use and its full
+# configuration. If not set, we fall back to the rpc_backend
+# option and driver specific configuration. (string value)
+#transport_url=<None>
+
+# The messaging driver to use, defaults to rabbit. Other
+# drivers include qpid and zmq. (string value)
+#rpc_backend=rabbit
+
+# The default exchange under which topics are scoped. May be
+# overridden by an exchange name specified in the
+# transport_url option. (string value)
+#control_exchange=openstack
+
+
+#
+# Options defined in cinder.exception
+#
+
+# Make exception message format errors fatal. (boolean value)
+#fatal_exception_format_errors=false
+
+
+#
+# Options defined in cinder.quota
+#
+
+# Number of volumes allowed per project (integer value)
+#quota_volumes=10
+
+# Number of volume snapshots allowed per project (integer
+# value)
+#quota_snapshots=10
+
+# Number of consistencygroups allowed per project (integer
+# value)
+#quota_consistencygroups=10
+
+# Total amount of storage, in gigabytes, allowed for volumes
+# and snapshots per project (integer value)
+#quota_gigabytes=1000
+
+# Number of volume backups allowed per project (integer value)
+#quota_backups=10
+
+# Total amount of storage, in gigabytes, allowed for backups
+# per project (integer value)
+#quota_backup_gigabytes=1000
+
+# Number of seconds until a reservation expires (integer
+# value)
+#reservation_expire=86400
+
+# Count of reservations until usage is refreshed (integer
+# value)
+#until_refresh=0
+
+# Number of seconds between subsequent usage refreshes
+# (integer value)
+#max_age=0
+
+# Default driver to use for quota checks (string value)
+#quota_driver=cinder.quota.DbQuotaDriver
+
+# Enables or disables use of default quota class with default
+# quota. (boolean value)
+#use_default_quota_class=true
+
+
+#
+# Options defined in cinder.service
+#
+
+# Interval, in seconds, between nodes reporting state to
+# datastore (integer value)
+#report_interval=10
+
+# Interval, in seconds, between running periodic tasks
+# (integer value)
+#periodic_interval=60
+
+# Range, in seconds, to randomly delay when starting the
+# periodic task scheduler to reduce stampeding. (Disable by
+# setting to 0) (integer value)
+#periodic_fuzzy_delay=60
+
+# IP address on which OpenStack Volume API listens (string
+# value)
+#osapi_volume_listen=0.0.0.0
+
+# Port on which OpenStack Volume API listens (integer value)
+#osapi_volume_listen_port=8776
+
+# Number of workers for OpenStack Volume API service. The
+# default is equal to the number of CPUs available. (integer
+# value)
+#osapi_volume_workers=<None>
+
+
+#
+# Options defined in cinder.ssh_utils
+#
+
+# Option to enable strict host key checking.  When set to
+# "True" Cinder will only connect to systems with a host key
+# present in the configured "ssh_hosts_key_file".  When set to
+# "False" the host key will be saved upon first connection and
+# used for subsequent connections.  Default=False (boolean
+# value)
+#strict_ssh_host_key_policy=false
+
+# File containing SSH host keys for the systems with which
+# Cinder needs to communicate.  OPTIONAL:
+# Default=$state_path/ssh_known_hosts (string value)
+#ssh_hosts_key_file=$state_path/ssh_known_hosts
+
+
+#
+# Options defined in cinder.test
+#
+
+# File name of clean sqlite db (string value)
+#sqlite_clean_db=clean.sqlite
+
+
+#
+# Options defined in cinder.wsgi
+#
+
+# Maximum line size of message headers to be accepted.
+# max_header_line may need to be increased when using large
+# tokens (typically those generated by the Keystone v3 API
+# with big service catalogs). (integer value)
+#max_header_line=16384
+
+# Timeout for client connections' socket operations. If an
+# incoming connection is idle for this number of seconds it
+# will be closed. A value of '0' means wait forever. (integer
+# value)
+#client_socket_timeout=900
+
+# If False, closes the client socket connection explicitly.
+# Setting it to True to maintain backward compatibility.
+# Recommended setting is set it to False. (boolean value)
+#wsgi_keep_alive=true
+
+# Sets the value of TCP_KEEPALIVE (True/False) for each server
+# socket. (boolean value)
+#tcp_keepalive=true
+
+# Sets the value of TCP_KEEPIDLE in seconds for each server
+# socket. Not supported on OS X. (integer value)
+#tcp_keepidle=600
+
+# Sets the value of TCP_KEEPINTVL in seconds for each server
+# socket. Not supported on OS X. (integer value)
+#tcp_keepalive_interval=<None>
+
+# Sets the value of TCP_KEEPCNT for each server socket. Not
+# supported on OS X. (integer value)
+#tcp_keepalive_count=<None>
+
+# CA certificate file to use to verify connecting clients
+# (string value)
+#ssl_ca_file=<None>
+
+# Certificate file to use when starting the server securely
+# (string value)
+#ssl_cert_file=<None>
+
+# Private key file to use when starting the server securely
+# (string value)
+#ssl_key_file=<None>
+
+
+#
+# Options defined in cinder.api.common
+#
+
+# The maximum number of items that a collection resource
+# returns in a single response (integer value)
+#osapi_max_limit=1000
+
+# Base URL that will be presented to users in links to the
+# OpenStack Volume API (string value)
+# Deprecated group/name - [DEFAULT]/osapi_compute_link_prefix
+#osapi_volume_base_URL=<None>
+
+
+#
+# Options defined in cinder.api.middleware.auth
+#
+
+# Treat X-Forwarded-For as the canonical remote address. Only
+# enable this if you have a sanitizing proxy. (boolean value)
+#use_forwarded_for=false
+
+
+#
+# Options defined in cinder.api.middleware.sizelimit
+#
+
+# Max size for body of a request (integer value)
+#osapi_max_request_body_size=114688
+
+
+#
+# Options defined in cinder.api.views.versions
+#
+
+# Public url to use for versions endpoint. The default is
+# None, which will use the request's host_url attribute to
+# populate the URL base. If Cinder is operating behind a
+# proxy, you will want to change this to represent the proxy's
+# URL. (string value)
+#public_endpoint=<None>
+
+
+#
+# Options defined in cinder.backup.chunkeddriver
+#
+
+# Compression algorithm (None to disable) (string value)
+#backup_compression_algorithm=zlib
+
+
+#
+# Options defined in cinder.backup.driver
+#
+
+# Backup metadata version to be used when backing up volume
+# metadata. If this number is bumped, make sure the service
+# doing the restore supports the new version. (integer value)
+#backup_metadata_version=2
+
+# The number of chunks or objects, for which one Ceilometer
+# notification will be sent (integer value)
+#backup_object_number_per_notification=10
+
+# Interval, in seconds, between two progress notifications
+# reporting the backup status (integer value)
+#backup_timer_interval=120
+
+
+#
+# Options defined in cinder.backup.drivers.ceph
+#
+
+# Ceph configuration file to use. (string value)
+#backup_ceph_conf=/etc/ceph/ceph.conf
+
+# The Ceph user to connect with. Default here is to use the
+# same user as for Cinder volumes. If not using cephx this
+# should be set to None. (string value)
+#backup_ceph_user=cinder
+
+# The chunk size, in bytes, that a backup is broken into
+# before transfer to the Ceph object store. (integer value)
+#backup_ceph_chunk_size=134217728
+
+# The Ceph pool where volume backups are stored. (string
+# value)
+#backup_ceph_pool=backups
+
+# RBD stripe unit to use when creating a backup image.
+# (integer value)
+#backup_ceph_stripe_unit=0
+
+# RBD stripe count to use when creating a backup image.
+# (integer value)
+#backup_ceph_stripe_count=0
+
+# If True, always discard excess bytes when restoring volumes
+# i.e. pad with zeroes. (boolean value)
+#restore_discard_excess_bytes=true
+
+
+#
+# Options defined in cinder.backup.drivers.nfs
+#
+
+# The maximum size in bytes of the files used to hold backups.
+# If the volume being backed up exceeds this size, then it
+# will be backed up into multiple files. (integer value)
+#backup_file_size=1999994880
+
+# The size in bytes that changes are tracked for incremental
+# backups. backup_swift_object_size has to be multiple of
+# backup_swift_block_size. (integer value)
+#backup_sha_block_size_bytes=32768
+
+# Enable or Disable the timer to send the periodic progress
+# notifications to Ceilometer when backing up the volume to
+# the backend storage. The default value is True to enable the
+# timer. (boolean value)
+#backup_enable_progress_timer=true
+
+# Base dir containing mount point for NFS share. (string
+# value)
+#backup_mount_point_base=$state_path/backup_mount
+
+# NFS share in fqdn:path, ipv4addr:path, or "[ipv6addr]:path"
+# format. (string value)
+#backup_share=<None>
+
+# Mount options passed to the NFS client. See NFS man page for
+# details. (string value)
+#backup_mount_options=<None>
+
+# Custom container to use for backups. (string value)
+#backup_container=<None>
+
+
+#
+# Options defined in cinder.backup.drivers.swift
+#
+
+# The URL of the Swift endpoint (string value)
+#backup_swift_url=<None>
+
+# Info to match when looking for swift in the service catalog.
+# Format is: separated values of the form:
+# <service_type>:<service_name>:<endpoint_type> - Only used if
+# backup_swift_url is unset (string value)
+#swift_catalog_info=object-store:swift:publicURL
+
+# Swift authentication mechanism (string value)
+#backup_swift_auth=per_user
+
+# Swift authentication version. Specify "1" for auth 1.0, or
+# "2" for auth 2.0 (string value)
+#backup_swift_auth_version=1
+
+# Swift tenant/account name. Required when connecting to an
+# auth 2.0 system (string value)
+#backup_swift_tenant=<None>
+
+# Swift user name (string value)
+#backup_swift_user=<None>
+
+# Swift key for authentication (string value)
+#backup_swift_key=<None>
+
+# The default Swift container to use (string value)
+#backup_swift_container=volumebackups
+
+# The size in bytes of Swift backup objects (integer value)
+#backup_swift_object_size=52428800
+
+# The size in bytes that changes are tracked for incremental
+# backups. backup_swift_object_size has to be multiple of
+# backup_swift_block_size. (integer value)
+#backup_swift_block_size=32768
+
+# The number of retries to make for Swift operations (integer
+# value)
+#backup_swift_retry_attempts=3
+
+# The backoff time in seconds between Swift retries (integer
+# value)
+#backup_swift_retry_backoff=2
+
+# Enable or Disable the timer to send the periodic progress
+# notifications to Ceilometer when backing up the volume to
+# the Swift backend storage. The default value is True to
+# enable the timer. (boolean value)
+#backup_swift_enable_progress_timer=true
+
+
+#
+# Options defined in cinder.backup.drivers.tsm
+#
+
+# Volume prefix for the backup id when backing up to TSM
+# (string value)
+#backup_tsm_volume_prefix=backup
+
+# TSM password for the running username (string value)
+#backup_tsm_password=password
+
+# Enable or Disable compression for backups (boolean value)
+#backup_tsm_compression=true
+
+
+#
+# Options defined in cinder.backup.manager
+#
+
+# Driver to use for backups. (string value)
+# Deprecated group/name - [DEFAULT]/backup_service
+#backup_driver=cinder.backup.drivers.swift
+
+
+#
+# Options defined in cinder.cmd.volume
+#
+
+# Backend override of host value. (string value)
+# Deprecated group/name - [DEFAULT]/host
+#backend_host=<None>
+
+
+#
+# Options defined in cinder.cmd.volume_usage_audit
+#
+
+# If this option is specified then the start time specified is
+# used instead of the start time of the last completed audit
+# period. (string value)
+#start_time=<None>
+
+# If this option is specified then the end time specified is
+# used instead of the end time of the last completed audit
+# period. (string value)
+#end_time=<None>
+
+# Send the volume and snapshot create and delete notifications
+# generated in the specified period. (boolean value)
+#send_actions=false
+
+
+#
+# Options defined in cinder.common.config
+#
+
+# File name for the paste.deploy config for cinder-api (string
+# value)
+#api_paste_config=api-paste.ini
+
+# Top-level directory for maintaining cinder's state (string
+# value)
+# Deprecated group/name - [DEFAULT]/pybasedir
+#state_path=/var/lib/cinder
+
+# IP address of this host (string value)
+#my_ip=10.0.0.1
+
+# Default glance host name or IP (string value)
+#glance_host=$my_ip
+
+# Default glance port (integer value)
+#glance_port=9292
+
+# A list of the glance API servers available to cinder
+# ([hostname|ip]:port) (list value)
+#glance_api_servers=$glance_host:$glance_port
+
+# Version of the glance API to use (integer value)
+#glance_api_version=1
+
+# Number retries when downloading an image from glance
+# (integer value)
+#glance_num_retries=0
+
+# Allow to perform insecure SSL (https) requests to glance
+# (boolean value)
+#glance_api_insecure=false
+
+# Enables or disables negotiation of SSL layer compression. In
+# some cases disabling compression can improve data
+# throughput, such as when high network bandwidth is available
+# and you use compressed image formats like qcow2. (boolean
+# value)
+#glance_api_ssl_compression=false
+
+# Location of ca certificates file to use for glance client
+# requests. (string value)
+#glance_ca_certificates_file=<None>
+
+# http/https timeout value for glance operations. If no value
+# (None) is supplied here, the glanceclient default value is
+# used. (integer value)
+#glance_request_timeout=<None>
+
+# The topic that scheduler nodes listen on (string value)
+#scheduler_topic=cinder-scheduler
+
+# The topic that volume nodes listen on (string value)
+#volume_topic=cinder-volume
+
+# The topic that volume backup nodes listen on (string value)
+#backup_topic=cinder-backup
+
+# DEPRECATED: Deploy v1 of the Cinder API. (boolean value)
+#enable_v1_api=true
+
+# Deploy v2 of the Cinder API. (boolean value)
+#enable_v2_api=true
+
+# Enables or disables rate limit of the API. (boolean value)
+#api_rate_limit=true
+
+# Specify list of extensions to load when using
+# osapi_volume_extension option with
+# cinder.api.contrib.select_extensions (list value)
+#osapi_volume_ext_list=
+
+# osapi volume extension to load (multi valued)
+#osapi_volume_extension=cinder.api.contrib.standard_extensions
+
+# Full class name for the Manager for volume (string value)
+#volume_manager=cinder.volume.manager.VolumeManager
+
+# Full class name for the Manager for volume backup (string
+# value)
+#backup_manager=cinder.backup.manager.BackupManager
+
+# Full class name for the Manager for scheduler (string value)
+#scheduler_manager=cinder.scheduler.manager.SchedulerManager
+
+# Name of this node.  This can be an opaque identifier. It is
+# not necessarily a host name, FQDN, or IP address. (string
+# value)
+#host=cinder
+
+# Availability zone of this node (string value)
+#storage_availability_zone=nova
+
+# Default availability zone for new volumes. If not set, the
+# storage_availability_zone option value is used as the
+# default for new volumes. (string value)
+#default_availability_zone=<None>
+
+# Default volume type to use (string value)
+#default_volume_type=<None>
+
+# Time period for which to generate volume usages. The options
+# are hour, day, month, or year. (string value)
+#volume_usage_audit_period=month
+
+# Path to the rootwrap configuration file to use for running
+# commands as root (string value)
+#rootwrap_config=/etc/cinder/rootwrap.conf
+
+# Enable monkey patching (boolean value)
+#monkey_patch=false
+
+# List of modules/decorators to monkey patch (list value)
+#monkey_patch_modules=
+
+# Maximum time since last check-in for a service to be
+# considered up (integer value)
+#service_down_time=60
+
+# The full class name of the volume API class to use (string
+# value)
+#volume_api_class=cinder.volume.api.API
+
+# The full class name of the volume backup API class (string
+# value)
+#backup_api_class=cinder.backup.api.API
+
+# The strategy to use for auth. Supports noauth, keystone, and
+# deprecated. (string value)
+auth_strategy=keystone
+
+# A list of backend names to use. These backend names should
+# be backed by a unique [CONFIG] group with its options (list
+# value)
+#enabled_backends=<None>
+
+# Whether snapshots count against gigabyte quota (boolean
+# value)
+#no_snapshot_gb_quota=false
+
+# The full class name of the volume transfer API class (string
+# value)
+#transfer_api_class=cinder.transfer.api.API
+
+# The full class name of the volume replication API class
+# (string value)
+#replication_api_class=cinder.replication.api.API
+
+# The full class name of the consistencygroup API class
+# (string value)
+#consistencygroup_api_class=cinder.consistencygroup.api.API
+
+# OpenStack privileged account username. Used for requests to
+# other services (such as Nova) that require an account with
+# special rights. (string value)
+#os_privileged_user_name=<None>
+
+# Password associated with the OpenStack privileged account.
+# (string value)
+#os_privileged_user_password=<None>
+
+# Tenant name associated with the OpenStack privileged
+# account. (string value)
+#os_privileged_user_tenant=<None>
+
+
+#
+# Options defined in cinder.compute
+#
+
+# The full class name of the compute API class to use (string
+# value)
+#compute_api_class=cinder.compute.nova.API
+
+
+#
+# Options defined in cinder.compute.nova
+#
+
+# Match this value when searching for nova in the service
+# catalog. Format is: separated values of the form:
+# <service_type>:<service_name>:<endpoint_type> (string value)
+#nova_catalog_info=compute:Compute Service:publicURL
+
+# Same as nova_catalog_info, but for admin endpoint. (string
+# value)
+#nova_catalog_admin_info=compute:Compute Service:adminURL
+
+# Override service catalog lookup with template for nova
+# endpoint e.g. http://localhost:8774/v2/%(project_id)s
+# (string value)
+#nova_endpoint_template=<None>
+
+# Same as nova_endpoint_template, but for admin endpoint.
+# (string value)
+#nova_endpoint_admin_template=<None>
+
+# Region name of this node (string value)
+#os_region_name=<None>
+
+# Location of ca certificates file to use for nova client
+# requests. (string value)
+#nova_ca_certificates_file=<None>
+
+# Allow to perform insecure SSL requests to nova (boolean
+# value)
+#nova_api_insecure=false
+
+
+#
+# Options defined in cinder.db.api
+#
+
+# Services to be added to the available pool on create
+# (boolean value)
+#enable_new_services=true
+
+# Template string to be used to generate volume names (string
+# value)
+#volume_name_template=volume-%s
+
+# Template string to be used to generate snapshot names
+# (string value)
+#snapshot_name_template=snapshot-%s
+
+# Template string to be used to generate backup names (string
+# value)
+#backup_name_template=backup-%s
+
+
+#
+# Options defined in cinder.db.base
+#
+
+# Driver to use for database access (string value)
+#db_driver=cinder.db
+
+
+#
+# Options defined in cinder.image.glance
+#
+
+# Default core properties of image (list value)
+#glance_core_properties=checksum,container_format,disk_format,image_name,image_id,min_disk,min_ram,name,size
+
+# A list of url schemes that can be downloaded directly via
+# the direct_url.  Currently supported schemes: [file]. (list
+# value)
+#allowed_direct_url_schemes=
+
+
+#
+# Options defined in cinder.image.image_utils
+#
+
+# Directory used for temporary storage during image conversion
+# (string value)
+#image_conversion_dir=$state_path/conversion
+
+
+#
+# Options defined in cinder.openstack.common.eventlet_backdoor
+#
+
+# Enable eventlet backdoor.  Acceptable values are 0, <port>,
+# and <start>:<end>, where 0 results in listening on a random
+# tcp port number; <port> results in listening on the
+# specified port number (and not enabling backdoor if that
+# port is in use); and <start>:<end> results in listening on
+# the smallest unused port number within the specified range
+# of port numbers.  The chosen port is displayed in the
+# service's log file. (string value)
+#backdoor_port=<None>
+
+
+#
+# Options defined in cinder.openstack.common.periodic_task
+#
+
+# Some periodic tasks can be run in a separate process. Should
+# we run them here? (boolean value)
+#run_external_periodic_tasks=true
+
+
+#
+# Options defined in cinder.openstack.common.policy
+#
+
+# The JSON file that defines policies. (string value)
+#policy_file=policy.json
+
+# Default rule. Enforced when a requested rule is not found.
+# (string value)
+#policy_default_rule=default
+
+# Directories where policy configuration files are stored.
+# They can be relative to any directory in the search path
+# defined by the config_dir option, or absolute paths. The
+# file defined by policy_file must exist for these directories
+# to be searched.  Missing or empty directories are ignored.
+# (multi valued)
+#policy_dirs=policy.d
+
+
+#
+# Options defined in cinder.openstack.common.versionutils
+#
+
+# Enables or disables fatal status of deprecations. (boolean
+# value)
+#fatal_deprecations=false
+
+
+#
+# Options defined in cinder.scheduler.driver
+#
+
+# The scheduler host manager class to use (string value)
+#scheduler_host_manager=cinder.scheduler.host_manager.HostManager
+
+# Maximum number of attempts to schedule an volume (integer
+# value)
+#scheduler_max_attempts=3
+
+
+#
+# Options defined in cinder.scheduler.host_manager
+#
+
+# Which filter class names to use for filtering hosts when not
+# specified in the request. (list value)
+#scheduler_default_filters=AvailabilityZoneFilter,CapacityFilter,CapabilitiesFilter
+
+# Which weigher class names to use for weighing hosts. (list
+# value)
+#scheduler_default_weighers=CapacityWeigher
+
+
+#
+# Options defined in cinder.scheduler.manager
+#
+
+# Default scheduler driver to use (string value)
+#scheduler_driver=cinder.scheduler.filter_scheduler.FilterScheduler
+
+
+#
+# Options defined in cinder.scheduler.scheduler_options
+#
+
+# Absolute path to scheduler configuration JSON file. (string
+# value)
+#scheduler_json_config_location=
+
+
+#
+# Options defined in cinder.scheduler.simple
+#
+
+# This configure option has been deprecated along with the
+# SimpleScheduler.  New scheduler is able to gather capacity
+# information for each host, thus setting the maximum number
+# of volume gigabytes for host is no longer needed.  It's safe
+# to remove this configure from cinder.conf. (integer value)
+#max_gigabytes=10000
+
+
+#
+# Options defined in cinder.scheduler.weights.capacity
+#
+
+# Multiplier used for weighing volume capacity. Negative
+# numbers mean to stack vs spread. (floating point value)
+#capacity_weight_multiplier=1.0
+
+# Multiplier used for weighing volume capacity. Negative
+# numbers mean to stack vs spread. (floating point value)
+#allocated_capacity_weight_multiplier=-1.0
+
+
+#
+# Options defined in cinder.scheduler.weights.volume_number
+#
+
+# Multiplier used for weighing volume number. Negative numbers
+# mean to spread vs stack. (floating point value)
+#volume_number_multiplier=-1.0
+
+
+#
+# Options defined in cinder.transfer.api
+#
+
+# The number of characters in the salt. (integer value)
+#volume_transfer_salt_length=8
+
+# The number of characters in the autogenerated auth key.
+# (integer value)
+#volume_transfer_key_length=16
+
+
+#
+# Options defined in cinder.volume.api
+#
+
+# Cache volume availability zones in memory for the provided
+# duration in seconds (integer value)
+#az_cache_duration=3600
+
+# Create volume from snapshot at the host where snapshot
+# resides (boolean value)
+#snapshot_same_host=true
+
+# Ensure that the new volumes are the same AZ as snapshot or
+# source volume (boolean value)
+#cloned_volume_same_az=true
+
+
+#
+# Options defined in cinder.volume.driver
+#
+
+# The maximum number of times to rescan iSER targetto find
+# volume (integer value)
+#num_iser_scan_tries=3
+
+# This option is deprecated and unused. It will be removed in
+# the Liberty release. (integer value)
+#iser_num_targets=<None>
+
+# Prefix for iSER volumes (string value)
+#iser_target_prefix=iqn.2010-10.org.openstack:
+
+# The IP address that the iSER daemon is listening on (string
+# value)
+#iser_ip_address=$my_ip
+
+# The port that the iSER daemon is listening on (integer
+# value)
+#iser_port=3260
+
+# The name of the iSER target user-land tool to use (string
+# value)
+#iser_helper=tgtadm
+
+# Number of times to attempt to run flakey shell commands
+# (integer value)
+#num_shell_tries=3
+
+# The percentage of backend capacity is reserved (integer
+# value)
+#reserved_percentage=0
+
+# This option is deprecated and unused. It will be removed in
+# the Liberty release. (integer value)
+#iscsi_num_targets=<None>
+
+# Prefix for iSCSI volumes (string value)
+#iscsi_target_prefix=iqn.2010-10.org.openstack:
+
+# The IP address that the iSCSI daemon is listening on (string
+# value)
+#iscsi_ip_address=$my_ip
+
+# The list of secondary IP addresses of the iSCSI daemon (list
+# value)
+#iscsi_secondary_ip_addresses=
+
+# The port that the iSCSI daemon is listening on (integer
+# value)
+#iscsi_port=3260
+
+# The maximum number of times to rescan targets to find volume
+# (integer value)
+# Deprecated group/name - [DEFAULT]/num_iscsi_scan_tries
+#num_volume_device_scan_tries=3
+
+# The backend name for a given driver implementation (string
+# value)
+#volume_backend_name=<None>
+
+# Do we attach/detach volumes in cinder using multipath for
+# volume to image and image to volume transfers? (boolean
+# value)
+#use_multipath_for_image_xfer=false
+
+# If this is set to True, attachment of volumes for image
+# transfer will be aborted when multipathd is not running.
+# Otherwise, it will fallback to single path. (boolean value)
+#enforce_multipath_for_image_xfer=false
+
+# Method used to wipe old volumes (string value)
+#volume_clear=zero
+
+# Size in MiB to wipe at start of old volumes. 0 => all
+# (integer value)
+#volume_clear_size=0
+
+# The flag to pass to ionice to alter the i/o priority of the
+# process used to zero a volume after deletion, for example
+# "-c3" for idle only priority. (string value)
+#volume_clear_ionice=<None>
+
+# iSCSI target user-land tool to use. tgtadm is default, use
+# lioadm for LIO iSCSI support, scstadmin for SCST target
+# support, iseradm for the ISER protocol, ietadm for iSCSI
+# Enterprise Target, iscsictl for Chelsio iSCSI Target or fake
+# for testing. (string value)
+#iscsi_helper=tgtadm
+
+# Volume configuration file storage directory (string value)
+#volumes_dir=$state_path/volumes
+
+# IET configuration file (string value)
+#iet_conf=/etc/iet/ietd.conf
+
+# Chiscsi (CXT) global defaults configuration file (string
+# value)
+#chiscsi_conf=/etc/chelsio-iscsi/chiscsi.conf
+
+# This option is deprecated and unused. It will be removed in
+# the next release. (string value)
+#lio_initiator_iqns=
+
+# Sets the behavior of the iSCSI target to either perform
+# blockio or fileio optionally, auto can be set and Cinder
+# will autodetect type of backing device (string value)
+#iscsi_iotype=fileio
+
+# The default block size used when copying/clearing volumes
+# (string value)
+#volume_dd_blocksize=1M
+
+# The blkio cgroup name to be used to limit bandwidth of
+# volume copy (string value)
+#volume_copy_blkio_cgroup_name=cinder-volume-copy
+
+# The upper limit of bandwidth of volume copy. 0 => unlimited
+# (integer value)
+#volume_copy_bps_limit=0
+
+# Sets the behavior of the iSCSI target to either perform
+# write-back(on) or write-through(off). This parameter is
+# valid if iscsi_helper is set to tgtadm or iseradm. (string
+# value)
+#iscsi_write_cache=on
+
+# Determines the iSCSI protocol for new iSCSI volumes, created
+# with tgtadm or lioadm target helpers. In order to enable
+# RDMA, this parameter should be set with the value "iser".
+# The supported iSCSI protocol values are "iscsi" and "iser".
+# (string value)
+#iscsi_protocol=iscsi
+
+# The path to the client certificate key for verification, if
+# the driver supports it. (string value)
+#driver_client_cert_key=<None>
+
+# The path to the client certificate for verification, if the
+# driver supports it. (string value)
+#driver_client_cert=<None>
+
+# Tell driver to use SSL for connection to backend storage if
+# the driver supports it. (boolean value)
+#driver_use_ssl=false
+
+# Float representation of the over subscription ratio when
+# thin provisioning is involved. Default ratio is 20.0,
+# meaning provisioned capacity can be 20 times of the total
+# physical capacity. If the ratio is 10.5, it means
+# provisioned capacity can be 10.5 times of the total physical
+# capacity. A ratio of 1.0 means provisioned capacity cannot
+# exceed the total physical capacity. A ratio lower than 1.0
+# will be ignored and the default value will be used instead.
+# (floating point value)
+#max_over_subscription_ratio=20.0
+
+# Certain ISCSI targets have predefined target names, SCST
+# target driver uses this name. (string value)
+#scst_target_iqn_name=<None>
+
+# SCST target implementation can choose from multiple SCST
+# target drivers. (string value)
+#scst_target_driver=iscsi
+
+# Option to enable/disable CHAP authentication for targets.
+# (boolean value)
+# Deprecated group/name - [DEFAULT]/eqlx_use_chap
+#use_chap_auth=false
+
+# CHAP user name. (string value)
+# Deprecated group/name - [DEFAULT]/eqlx_chap_login
+#chap_username=
+
+# Password for specified CHAP account name. (string value)
+# Deprecated group/name - [DEFAULT]/eqlx_chap_password
+#chap_password=
+
+# Namespace for driver private data values to be saved in.
+# (string value)
+#driver_data_namespace=<None>
+
+# String representation for an equation that will be used to
+# filter hosts. Only used when the driver filter is set to be
+# used by the Cinder scheduler. (string value)
+#filter_function=<None>
+
+# String representation for an equation that will be used to
+# determine the goodness of a host. Only used when using the
+# goodness weigher is set to be used by the Cinder scheduler.
+# (string value)
+#goodness_function=<None>
+
+
+#
+# Options defined in cinder.volume.drivers.block_device
+#
+
+# List of all available devices (list value)
+#available_devices=
+
+
+#
+# Options defined in cinder.volume.drivers.cloudbyte.options
+#
+
+# These values will be used for CloudByte storage's addQos API
+# call. (dict value)
+#cb_add_qosgroup=latency:15,iops:10,graceallowed:false,iopscontrol:true,memlimit:0,throughput:0,tpcontrol:false,networkspeed:0
+
+# Driver will use this API key to authenticate against the
+# CloudByte storage's management interface. (string value)
+#cb_apikey=None
+
+# CloudByte storage specific account name. This maps to a
+# project name in OpenStack. (string value)
+#cb_account_name=None
+
+# This corresponds to the name of Tenant Storage Machine (TSM)
+# in CloudByte storage. A volume will be created in this TSM.
+# (string value)
+#cb_tsm_name=None
+
+# A retry value in seconds. Will be used by the driver to
+# check if volume creation was successful in CloudByte
+# storage. (integer value)
+#cb_confirm_volume_create_retry_interval=5
+
+# Will confirm a successful volume creation in CloudByte
+# storage by making this many number of attempts. (integer
+# value)
+#cb_confirm_volume_create_retries=3
+
+# These values will be used for CloudByte storage's
+# createVolume API call. (dict value)
+#cb_create_volume=compression:off,deduplication:off,blocklength:512B,sync:always,protocoltype:ISCSI,recordsize:16k
+
+
+#
+# Options defined in cinder.volume.drivers.datera
+#
+
+# DEPRECATED: This will be removed in the Liberty release. Use
+# san_login and san_password instead. This directly sets the
+# Datera API token. (string value)
+#datera_api_token=<None>
+
+# Datera API port. (string value)
+#datera_api_port=7717
+
+# Datera API version. (string value)
+#datera_api_version=1
+
+# Number of replicas to create of an inode. (string value)
+#datera_num_replicas=3
+
+
+#
+# Options defined in cinder.volume.drivers.dell.dell_storagecenter_common
+#
+
+# Storage Center System Serial Number (integer value)
+#dell_sc_ssn=64702
+
+# Dell API port (integer value)
+#dell_sc_api_port=3033
+
+# Name of the server folder to use on the Storage Center
+# (string value)
+#dell_sc_server_folder=openstack
+
+# Name of the volume folder to use on the Storage Center
+# (string value)
+#dell_sc_volume_folder=openstack
+
+
+#
+# Options defined in cinder.volume.drivers.emc.emc_vmax_common
+#
+
+# use this file for cinder emc plugin config data (string
+# value)
+#cinder_emc_config_file=/etc/cinder/cinder_emc_config.xml
+
+
+#
+# Options defined in cinder.volume.drivers.emc.emc_vnx_cli
+#
+
+# VNX authentication scope type. (string value)
+#storage_vnx_authentication_type=global
+
+# Directory path that contains the VNX security file. Make
+# sure the security file is generated first. (string value)
+#storage_vnx_security_file_dir=<None>
+
+# Naviseccli Path. (string value)
+#naviseccli_path=
+
+# Storage pool name. (string value)
+#storage_vnx_pool_name=<None>
+
+# VNX secondary SP IP Address. (string value)
+#san_secondary_ip=<None>
+
+# Default timeout for CLI operations in minutes. For example,
+# LUN migration is a typical long running operation, which
+# depends on the LUN size and the load of the array. An upper
+# bound in the specific deployment can be set to avoid
+# unnecessary long wait. By default, it is 365 days long.
+# (integer value)
+#default_timeout=525600
+
+# Default max number of LUNs in a storage group. By default,
+# the value is 255. (integer value)
+#max_luns_per_storage_group=255
+
+# To destroy storage group when the last LUN is removed from
+# it. By default, the value is False. (boolean value)
+#destroy_empty_storage_group=false
+
+# Mapping between hostname and its iSCSI initiator IP
+# addresses. (string value)
+#iscsi_initiators=
+
+# Automatically register initiators. By default, the value is
+# False. (boolean value)
+#initiator_auto_registration=false
+
+# Automatically deregister initiators after the related
+# storage group is destroyed. By default, the value is False.
+# (boolean value)
+#initiator_auto_deregistration=false
+
+# Report free_capacity_gb as 0 when the limit to maximum
+# number of pool LUNs is reached. By default, the value is
+# False. (boolean value)
+#check_max_pool_luns_threshold=false
+
+# Delete a LUN even if it is in Storage Groups. (boolean
+# value)
+#force_delete_lun_in_storagegroup=false
+
+
+#
+# Options defined in cinder.volume.drivers.emc.xtremio
+#
+
+# XMS cluster id in multi-cluster environment (string value)
+#xtremio_cluster_name=
+
+
+#
+# Options defined in cinder.volume.drivers.eqlx
+#
+
+# Group name to use for creating volumes. Defaults to
+# "group-0". (string value)
+#eqlx_group_name=group-0
+
+# Timeout for the Group Manager cli command execution. Default
+# is 30. (integer value)
+#eqlx_cli_timeout=30
+
+# Maximum retry count for reconnection. Default is 5. (integer
+# value)
+#eqlx_cli_max_retries=5
+
+# Use CHAP authentication for targets. Note that this option
+# is deprecated in favour of "use_chap_auth" as specified in
+# cinder/volume/driver.py and will be removed in next release.
+# (boolean value)
+#eqlx_use_chap=false
+
+# Existing CHAP account name. Note that this option is
+# deprecated in favour of "chap_username" as specified in
+# cinder/volume/driver.py and will be removed in next release.
+# (string value)
+#eqlx_chap_login=admin
+
+# Password for specified CHAP account name. Note that this
+# option is deprecated in favour of "chap_password" as
+# specified in cinder/volume/driver.py and will be removed in
+# the next release (string value)
+#eqlx_chap_password=password
+
+# Pool in which volumes will be created. Defaults to
+# "default". (string value)
+#eqlx_pool=default
+
+
+#
+# Options defined in cinder.volume.drivers.glusterfs
+#
+
+# File with the list of available gluster shares (string
+# value)
+#glusterfs_shares_config=/etc/cinder/glusterfs_shares
+
+# Create volumes as sparsed files which take no space.If set
+# to False volume is created as regular file.In such case
+# volume creation takes a lot of time. (boolean value)
+#glusterfs_sparsed_volumes=true
+
+# Create volumes as QCOW2 files rather than raw files.
+# (boolean value)
+#glusterfs_qcow2_volumes=false
+
+# Base dir containing mount points for gluster shares. (string
+# value)
+#glusterfs_mount_point_base=$state_path/mnt
+
+
+#
+# Options defined in cinder.volume.drivers.hds.hds
+#
+
+# The configuration file for the Cinder HDS driver for HUS
+# (string value)
+#hds_cinder_config_file=/opt/hds/hus/cinder_hus_conf.xml
+
+
+#
+# Options defined in cinder.volume.drivers.hds.iscsi
+#
+
+# Configuration file for HDS iSCSI cinder plugin (string
+# value)
+#hds_hnas_iscsi_config_file=/opt/hds/hnas/cinder_iscsi_conf.xml
+
+
+#
+# Options defined in cinder.volume.drivers.hds.nfs
+#
+
+# Configuration file for HDS NFS cinder plugin (string value)
+#hds_hnas_nfs_config_file=/opt/hds/hnas/cinder_nfs_conf.xml
+
+
+#
+# Options defined in cinder.volume.drivers.hitachi.hbsd_common
+#
+
+# Serial number of storage system (string value)
+#hitachi_serial_number=<None>
+
+# Name of an array unit (string value)
+#hitachi_unit_name=<None>
+
+# Pool ID of storage system (integer value)
+#hitachi_pool_id=<None>
+
+# Thin pool ID of storage system (integer value)
+#hitachi_thin_pool_id=<None>
+
+# Range of logical device of storage system (string value)
+#hitachi_ldev_range=<None>
+
+# Default copy method of storage system (string value)
+#hitachi_default_copy_method=FULL
+
+# Copy speed of storage system (integer value)
+#hitachi_copy_speed=3
+
+# Interval to check copy (integer value)
+#hitachi_copy_check_interval=3
+
+# Interval to check copy asynchronously (integer value)
+#hitachi_async_copy_check_interval=10
+
+# Control port names for HostGroup or iSCSI Target (string
+# value)
+#hitachi_target_ports=<None>
+
+# Range of group number (string value)
+#hitachi_group_range=<None>
+
+# Request for creating HostGroup or iSCSI Target (boolean
+# value)
+#hitachi_group_request=false
+
+
+#
+# Options defined in cinder.volume.drivers.hitachi.hbsd_fc
+#
+
+# Request for FC Zone creating HostGroup (boolean value)
+#hitachi_zoning_request=false
+
+
+#
+# Options defined in cinder.volume.drivers.hitachi.hbsd_horcm
+#
+
+# Instance numbers for HORCM (string value)
+#hitachi_horcm_numbers=200,201
+
+# Username of storage system for HORCM (string value)
+#hitachi_horcm_user=<None>
+
+# Password of storage system for HORCM (string value)
+#hitachi_horcm_password=<None>
+
+# Add to HORCM configuration (boolean value)
+#hitachi_horcm_add_conf=true
+
+
+#
+# Options defined in cinder.volume.drivers.hitachi.hbsd_iscsi
+#
+
+# Add CHAP user (boolean value)
+#hitachi_add_chap_user=false
+
+# iSCSI authentication method (string value)
+#hitachi_auth_method=<None>
+
+# iSCSI authentication username (string value)
+#hitachi_auth_user=HBSD-CHAP-user
+
+# iSCSI authentication password (string value)
+#hitachi_auth_password=HBSD-CHAP-password
+
+
+#
+# Options defined in cinder.volume.drivers.huawei
+#
+
+# The configuration file for the Cinder Huawei driver (string
+# value)
+#cinder_huawei_conf_file=/etc/cinder/cinder_huawei_conf.xml
+
+
+#
+# Options defined in cinder.volume.drivers.ibm.flashsystem
+#
+
+# Connection protocol should be FC. (string value)
+#flashsystem_connection_protocol=FC
+
+# Connect with multipath (FC only). (boolean value)
+#flashsystem_multipath_enabled=false
+
+# Allows vdisk to multi host mapping. (boolean value)
+#flashsystem_multihostmap_enabled=true
+
+
+#
+# Options defined in cinder.volume.drivers.ibm.gpfs
+#
+
+# Specifies the path of the GPFS directory where Block Storage
+# volume and snapshot files are stored. (string value)
+#gpfs_mount_point_base=<None>
+
+# Specifies the path of the Image service repository in GPFS.
+# Leave undefined if not storing images in GPFS. (string
+# value)
+#gpfs_images_dir=<None>
+
+# Specifies the type of image copy to be used.  Set this when
+# the Image service repository also uses GPFS so that image
+# files can be transferred efficiently from the Image service
+# to the Block Storage service. There are two valid values:
+# "copy" specifies that a full copy of the image is made;
+# "copy_on_write" specifies that copy-on-write optimization
+# strategy is used and unmodified blocks of the image file are
+# shared efficiently. (string value)
+#gpfs_images_share_mode=<None>
+
+# Specifies an upper limit on the number of indirections
+# required to reach a specific block due to snapshots or
+# clones.  A lengthy chain of copy-on-write snapshots or
+# clones can have a negative impact on performance, but
+# improves space utilization.  0 indicates unlimited clone
+# depth. (integer value)
+#gpfs_max_clone_depth=0
+
+# Specifies that volumes are created as sparse files which
+# initially consume no space. If set to False, the volume is
+# created as a fully allocated file, in which case, creation
+# may take a significantly longer time. (boolean value)
+#gpfs_sparse_volumes=true
+
+# Specifies the storage pool that volumes are assigned to. By
+# default, the system storage pool is used. (string value)
+#gpfs_storage_pool=system
+
+
+#
+# Options defined in cinder.volume.drivers.ibm.ibmnas
+#
+
+# IBMNAS platform type to be used as backend storage; valid
+# values are - v7ku : for using IBM Storwize V7000 Unified,
+# sonas : for using IBM Scale Out NAS, gpfs-nas : for using
+# NFS based IBM GPFS deployments. (string value)
+#ibmnas_platform_type=v7ku
+
+
+#
+# Options defined in cinder.volume.drivers.ibm.storwize_svc
+#
+
+# Storage system storage pool for volumes (string value)
+#storwize_svc_volpool_name=volpool
+
+# Storage system space-efficiency parameter for volumes
+# (percentage) (integer value)
+#storwize_svc_vol_rsize=2
+
+# Storage system threshold for volume capacity warnings
+# (percentage) (integer value)
+#storwize_svc_vol_warning=0
+
+# Storage system autoexpand parameter for volumes (True/False)
+# (boolean value)
+#storwize_svc_vol_autoexpand=true
+
+# Storage system grain size parameter for volumes
+# (32/64/128/256) (integer value)
+#storwize_svc_vol_grainsize=256
+
+# Storage system compression option for volumes (boolean
+# value)
+#storwize_svc_vol_compression=false
+
+# Enable Easy Tier for volumes (boolean value)
+#storwize_svc_vol_easytier=true
+
+# The I/O group in which to allocate volumes (integer value)
+#storwize_svc_vol_iogrp=0
+
+# Maximum number of seconds to wait for FlashCopy to be
+# prepared. Maximum value is 600 seconds (10 minutes) (integer
+# value)
+#storwize_svc_flashcopy_timeout=120
+
+# Connection protocol (iSCSI/FC) (string value)
+#storwize_svc_connection_protocol=iSCSI
+
+# Configure CHAP authentication for iSCSI connections
+# (Default: Enabled) (boolean value)
+#storwize_svc_iscsi_chap_enabled=true
+
+# Connect with multipath (FC only; iSCSI multipath is
+# controlled by Nova) (boolean value)
+#storwize_svc_multipath_enabled=false
+
+# Allows vdisk to multi host mapping (boolean value)
+#storwize_svc_multihostmap_enabled=true
+
+# Indicate whether svc driver is compatible for NPIV setup. If
+# it is compatible, it will allow no wwpns being returned on
+# get_conn_fc_wwpns during initialize_connection (boolean
+# value)
+#storwize_svc_npiv_compatibility_mode=false
+
+# Allow tenants to specify QOS on create (boolean value)
+#storwize_svc_allow_tenant_qos=false
+
+# If operating in stretched cluster mode, specify the name of
+# the pool in which mirrored copies are stored.Example:
+# "pool2" (string value)
+#storwize_svc_stretched_cluster_partner=<None>
+
+
+#
+# Options defined in cinder.volume.drivers.ibm.xiv_ds8k
+#
+
+# Proxy driver that connects to the IBM Storage Array (string
+# value)
+#xiv_ds8k_proxy=xiv_ds8k_openstack.nova_proxy.XIVDS8KNovaProxy
+
+# Connection type to the IBM Storage Array (string value)
+#xiv_ds8k_connection_type=iscsi
+
+# CHAP authentication mode, effective only for iscsi
+# (disabled|enabled) (string value)
+#xiv_chap=disabled
+
+
+#
+# Options defined in cinder.volume.drivers.lvm
+#
+
+# Name for the VG that will contain exported volumes (string
+# value)
+#volume_group=cinder-volumes
+
+# If >0, create LVs with multiple mirrors. Note that this
+# requires lvm_mirrors + 2 PVs with available space (integer
+# value)
+#lvm_mirrors=0
+
+# Type of LVM volumes to deploy (string value)
+#lvm_type=default
+
+# LVM conf file to use for the LVM driver in Cinder; this
+# setting is ignored if the specified file does not exist (You
+# can also specify 'None' to not use a conf file even if one
+# exists). (string value)
+#lvm_conf_file=/etc/cinder/lvm.conf
+
+
+#
+# Options defined in cinder.volume.drivers.netapp.options
+#
+
+# The vFiler unit on which provisioning of block storage
+# volumes will be done. This option is only used by the driver
+# when connecting to an instance with a storage family of Data
+# ONTAP operating in 7-Mode. Only use this option when
+# utilizing the MultiStore feature on the NetApp storage
+# system. (string value)
+#netapp_vfiler=<None>
+
+# The name of the config.conf stanza for a Data ONTAP (7-mode)
+# HA partner.  This option is only used by the driver when
+# connecting to an instance with a storage family of Data
+# ONTAP operating in 7-Mode, and it is required if the storage
+# protocol selected is FC. (string value)
+#netapp_partner_backend_name=<None>
+
+# Administrative user account name used to access the storage
+# system or proxy server. (string value)
+#netapp_login=<None>
+
+# Password for the administrative user account specified in
+# the netapp_login option. (string value)
+#netapp_password=<None>
+
+# This option specifies the virtual storage server (Vserver)
+# name on the storage cluster on which provisioning of block
+# storage volumes should occur. (string value)
+#netapp_vserver=<None>
+
+# The hostname (or IP address) for the storage system or proxy
+# server. (string value)
+#netapp_server_hostname=<None>
+
+# The TCP port to use for communication with the storage
+# system or proxy server. If not specified, Data ONTAP drivers
+# will use 80 for HTTP and 443 for HTTPS; E-Series will use
+# 8080 for HTTP and 8443 for HTTPS. (integer value)
+#netapp_server_port=<None>
+
+# This option is used to specify the path to the E-Series
+# proxy application on a proxy server. The value is combined
+# with the value of the netapp_transport_type,
+# netapp_server_hostname, and netapp_server_port options to
+# create the URL used by the driver to connect to the proxy
+# application. (string value)
+#netapp_webservice_path=/devmgr/v2
+
+# This option is only utilized when the storage family is
+# configured to eseries. This option is used to restrict
+# provisioning to the specified controllers. Specify the value
+# of this option to be a comma separated list of controller
+# hostnames or IP addresses to be used for provisioning.
+# (string value)
+#netapp_controller_ips=<None>
+
+# Password for the NetApp E-Series storage array. (string
+# value)
+#netapp_sa_password=<None>
+
+# This option is used to restrict provisioning to the
+# specified storage pools. Only dynamic disk pools are
+# currently supported. Specify the value of this option to be
+# a comma separated list of disk pool names to be used for
+# provisioning. (string value)
+#netapp_storage_pools=<None>
+
+# This option is used to define how the controllers in the
+# E-Series storage array will work with the particular
+# operating system on the hosts that are connected to it.
+# (string value)
+#netapp_eseries_host_type=linux_dm_mp
+
+# If the percentage of available space for an NFS share has
+# dropped below the value specified by this option, the NFS
+# image cache will be cleaned. (integer value)
+#thres_avl_size_perc_start=20
+
+# When the percentage of available space on an NFS share has
+# reached the percentage specified by this option, the driver
+# will stop clearing files from the NFS image cache that have
+# not been accessed in the last M minutes, where M is the
+# value of the expiry_thres_minutes configuration option.
+# (integer value)
+#thres_avl_size_perc_stop=60
+
+# This option specifies the threshold for last access time for
+# images in the NFS image cache. When a cache cleaning cycle
+# begins, images in the cache that have not been accessed in
+# the last M minutes, where M is the value of this parameter,
+# will be deleted from the cache to create free space on the
+# NFS share. (integer value)
+#expiry_thres_minutes=720
+
+# This option specifies the path of the NetApp copy offload
+# tool binary. Ensure that the binary has execute permissions
+# set which allow the effective user of the cinder-volume
+# process to execute the file. (string value)
+#netapp_copyoffload_tool_path=<None>
+
+# The quantity to be multiplied by the requested volume size
+# to ensure enough space is available on the virtual storage
+# server (Vserver) to fulfill the volume creation request.
+# (floating point value)
+#netapp_size_multiplier=1.2
+
+# This option is only utilized when the storage protocol is
+# configured to use iSCSI or FC. This option is used to
+# restrict provisioning to the specified controller volumes.
+# Specify the value of this option to be a comma separated
+# list of NetApp controller volume names to be used for
+# provisioning. (string value)
+#netapp_volume_list=<None>
+
+# The storage family type used on the storage system; valid
+# values are ontap_7mode for using Data ONTAP operating in
+# 7-Mode, ontap_cluster for using clustered Data ONTAP, or
+# eseries for using E-Series. (string value)
+#netapp_storage_family=ontap_cluster
+
+# The storage protocol to be used on the data path with the
+# storage system. (string value)
+#netapp_storage_protocol=<None>
+
+# The transport protocol used when communicating with the
+# storage system or proxy server. (string value)
+#netapp_transport_type=http
+
+
+#
+# Options defined in cinder.volume.drivers.nfs
+#
+
+# File with the list of available nfs shares (string value)
+#nfs_shares_config=/etc/cinder/nfs_shares
+
+# Create volumes as sparsed files which take no space.If set
+# to False volume is created as regular file.In such case
+# volume creation takes a lot of time. (boolean value)
+#nfs_sparsed_volumes=true
+
+# Percent of ACTUAL usage of the underlying volume before no
+# new volumes can be allocated to the volume destination.
+# (floating point value)
+#nfs_used_ratio=0.95
+
+# This will compare the allocated to available space on the
+# volume destination.  If the ratio exceeds this number, the
+# destination will no longer be valid. (floating point value)
+#nfs_oversub_ratio=1.0
+
+# Base dir containing mount points for nfs shares. (string
+# value)
+#nfs_mount_point_base=$state_path/mnt
+
+# Mount options passed to the nfs client. See section of the
+# nfs man page for details. (string value)
+#nfs_mount_options=<None>
+
+# The number of attempts to mount nfs shares before raising an
+# error.  At least one attempt will be made to mount an nfs
+# share, regardless of the value specified. (integer value)
+#nfs_mount_attempts=3
+
+
+#
+# Options defined in cinder.volume.drivers.nimble
+#
+
+# Nimble Controller pool name (string value)
+#nimble_pool_name=default
+
+# Nimble Subnet Label (string value)
+#nimble_subnet_label=*
+
+
+#
+# Options defined in cinder.volume.drivers.openvstorage
+#
+
+# Vpool to use for volumes - backend is defined by vpool not
+# by us. (string value)
+#vpool_name=
+
+
+#
+# Options defined in cinder.volume.drivers.prophetstor.options
+#
+
+# DPL pool uuid in which DPL volumes are stored. (string
+# value)
+#dpl_pool=
+
+# DPL port number. (integer value)
+#dpl_port=8357
+
+
+#
+# Options defined in cinder.volume.drivers.pure
+#
+
+# REST API authorization token. (string value)
+#pure_api_token=<None>
+
+
+#
+# Options defined in cinder.volume.drivers.quobyte
+#
+
+# URL to the Quobyte volume e.g., quobyte://<DIR host>/<volume
+# name> (string value)
+#quobyte_volume_url=<None>
+
+# Path to a Quobyte Client configuration file. (string value)
+#quobyte_client_cfg=<None>
+
+# Create volumes as sparse files which take no space. If set
+# to False, volume is created as regular file.In such case
+# volume creation takes a lot of time. (boolean value)
+#quobyte_sparsed_volumes=true
+
+# Create volumes as QCOW2 files rather than raw files.
+# (boolean value)
+#quobyte_qcow2_volumes=true
+
+# Base dir containing the mount point for the Quobyte volume.
+# (string value)
+#quobyte_mount_point_base=$state_path/mnt
+
+
+#
+# Options defined in cinder.volume.drivers.rbd
+#
+
+# The RADOS pool where rbd volumes are stored (string value)
+#rbd_pool=rbd
+
+# The RADOS client name for accessing rbd volumes - only set
+# when using cephx authentication (string value)
+#rbd_user=<None>
+
+# Path to the ceph configuration file (string value)
+#rbd_ceph_conf=
+
+# Flatten volumes created from snapshots to remove dependency
+# from volume to snapshot (boolean value)
+#rbd_flatten_volume_from_snapshot=false
+
+# The libvirt uuid of the secret for the rbd_user volumes
+# (string value)
+#rbd_secret_uuid=<None>
+
+# Directory where temporary image files are stored when the
+# volume driver does not write them directly to the volume.
+# Warning: this option is now deprecated, please use
+# image_conversion_dir instead. (string value)
+#volume_tmp_dir=<None>
+
+# Maximum number of nested volume clones that are taken before
+# a flatten occurs. Set to 0 to disable cloning. (integer
+# value)
+#rbd_max_clone_depth=5
+
+# Volumes will be chunked into objects of this size (in
+# megabytes). (integer value)
+#rbd_store_chunk_size=4
+
+# Timeout value (in seconds) used when connecting to ceph
+# cluster. If value < 0, no timeout is set and default
+# librados value is used. (integer value)
+#rados_connect_timeout=-1
+
+
+#
+# Options defined in cinder.volume.drivers.remotefs
+#
+
+# IP address or Hostname of NAS system. (string value)
+#nas_ip=
+
+# User name to connect to NAS system. (string value)
+#nas_login=admin
+
+# Password to connect to NAS system. (string value)
+#nas_password=
+
+# SSH port to use to connect to NAS system. (integer value)
+#nas_ssh_port=22
+
+# Filename of private key to use for SSH authentication.
+# (string value)
+#nas_private_key=
+
+# Allow network-attached storage systems to operate in a
+# secure environment where root level access is not permitted.
+# If set to False, access is as the root user and insecure. If
+# set to True, access is not as root. If set to auto, a check
+# is done to determine if this is a new installation: True is
+# used if so, otherwise False. Default is auto. (string value)
+#nas_secure_file_operations=auto
+
+# Set more secure file permissions on network-attached storage
+# volume files to restrict broad other/world access. If set to
+# False, volumes are created with open permissions. If set to
+# True, volumes are created with permissions for the cinder
+# user and group (660). If set to auto, a check is done to
+# determine if this is a new installation: True is used if so,
+# otherwise False. Default is auto. (string value)
+#nas_secure_file_permissions=auto
+
+# Path to the share to use for storing Cinder volumes. For
+# example:  "/srv/export1" for an NFS server export available
+# at 10.0.5.10:/srv/export1 . (string value)
+#nas_share_path=
+
+# Options used to mount the storage backend file system where
+# Cinder volumes are stored. (string value)
+#nas_mount_options=<None>
+
+
+#
+# Options defined in cinder.volume.drivers.san.hp.hp_3par_common
+#
+
+# 3PAR WSAPI Server Url like https://<3par ip>:8080/api/v1
+# (string value)
+#hp3par_api_url=
+
+# 3PAR Super user username (string value)
+#hp3par_username=
+
+# 3PAR Super user password (string value)
+#hp3par_password=
+
+# List of the CPG(s) to use for volume creation (list value)
+#hp3par_cpg=OpenStack
+
+# The CPG to use for Snapshots for volumes. If empty the
+# userCPG will be used. (string value)
+#hp3par_cpg_snap=
+
+# The time in hours to retain a snapshot.  You can't delete it
+# before this expires. (string value)
+#hp3par_snapshot_retention=
+
+# The time in hours when a snapshot expires  and is deleted.
+# This must be larger than expiration (string value)
+#hp3par_snapshot_expiration=
+
+# Enable HTTP debugging to 3PAR (boolean value)
+#hp3par_debug=false
+
+# List of target iSCSI addresses to use. (list value)
+#hp3par_iscsi_ips=
+
+# Enable CHAP authentication for iSCSI connections. (boolean
+# value)
+#hp3par_iscsi_chap_enabled=false
+
+
+#
+# Options defined in cinder.volume.drivers.san.hp.hp_lefthand_rest_proxy
+#
+
+# HP LeftHand WSAPI Server Url like https://<LeftHand
+# ip>:8081/lhos (string value)
+#hplefthand_api_url=<None>
+
+# HP LeftHand Super user username (string value)
+#hplefthand_username=<None>
+
+# HP LeftHand Super user password (string value)
+#hplefthand_password=<None>
+
+# HP LeftHand cluster name (string value)
+#hplefthand_clustername=<None>
+
+# Configure CHAP authentication for iSCSI connections
+# (Default: Disabled) (boolean value)
+#hplefthand_iscsi_chap_enabled=false
+
+# Enable HTTP debugging to LeftHand (boolean value)
+#hplefthand_debug=false
+
+
+#
+# Options defined in cinder.volume.drivers.san.san
+#
+
+# Use thin provisioning for SAN volumes? (boolean value)
+#san_thin_provision=true
+
+# IP address of SAN controller (string value)
+#san_ip=
+
+# Username for SAN controller (string value)
+#san_login=admin
+
+# Password for SAN controller (string value)
+#san_password=
+
+# Filename of private key to use for SSH authentication
+# (string value)
+#san_private_key=
+
+# Cluster name to use for creating volumes (string value)
+#san_clustername=
+
+# SSH port to use with SAN (integer value)
+#san_ssh_port=22
+
+# Execute commands locally instead of over SSH; use if the
+# volume service is running on the SAN device (boolean value)
+#san_is_local=false
+
+# SSH connection timeout in seconds (integer value)
+#ssh_conn_timeout=30
+
+# Minimum ssh connections in the pool (integer value)
+#ssh_min_pool_conn=1
+
+# Maximum ssh connections in the pool (integer value)
+#ssh_max_pool_conn=5
+
+
+#
+# Options defined in cinder.volume.drivers.scality
+#
+
+# Path or URL to Scality SOFS configuration file (string
+# value)
+#scality_sofs_config=<None>
+
+# Base dir where Scality SOFS shall be mounted (string value)
+#scality_sofs_mount_point=$state_path/scality
+
+# Path from Scality SOFS root to volume dir (string value)
+#scality_sofs_volume_dir=cinder/volumes
+
+
+#
+# Options defined in cinder.volume.drivers.smbfs
+#
+
+# File with the list of available smbfs shares. (string value)
+#smbfs_shares_config=/etc/cinder/smbfs_shares
+
+# Default format that will be used when creating volumes if no
+# volume format is specified. (string value)
+#smbfs_default_volume_format=qcow2
+
+# Create volumes as sparsed files which take no space rather
+# than regular files when using raw format, in which case
+# volume creation takes lot of time. (boolean value)
+#smbfs_sparsed_volumes=true
+
+# Percent of ACTUAL usage of the underlying volume before no
+# new volumes can be allocated to the volume destination.
+# (floating point value)
+#smbfs_used_ratio=0.95
+
+# This will compare the allocated to available space on the
+# volume destination.  If the ratio exceeds this number, the
+# destination will no longer be valid. (floating point value)
+#smbfs_oversub_ratio=1.0
+
+# Base dir containing mount points for smbfs shares. (string
+# value)
+#smbfs_mount_point_base=$state_path/mnt
+
+# Mount options passed to the smbfs client. See mount.cifs man
+# page for details. (string value)
+#smbfs_mount_options=noperm,file_mode=0775,dir_mode=0775
+
+
+#
+# Options defined in cinder.volume.drivers.solidfire
+#
+
+# Set 512 byte emulation on volume creation;  (boolean value)
+#sf_emulate_512=true
+
+# Allow tenants to specify QOS on create (boolean value)
+#sf_allow_tenant_qos=false
+
+# Create SolidFire accounts with this prefix. Any string can
+# be used here, but the string "hostname" is special and will
+# create a prefix using the cinder node hostsname (previous
+# default behavior).  The default is NO prefix. (string value)
+#sf_account_prefix=<None>
+
+# Account name on the SolidFire Cluster to use as owner of
+# template/cache volumes (created if does not exist). (string
+# value)
+#sf_template_account_name=openstack-vtemplate
+
+# Create an internal cache of copy of images when a bootable
+# volume is created to eliminate fetch from glance and qemu-
+# conversion on subsequent calls. (boolean value)
+#sf_allow_template_caching=true
+
+# SolidFire API port. Useful if the device api is behind a
+# proxy on a different port. (integer value)
+#sf_api_port=443
+
+
+#
+# Options defined in cinder.volume.drivers.srb
+#
+
+# Comma-separated list of REST servers IP to connect to. (eg
+# http://IP1/,http://IP2:81/path (string value)
+#srb_base_urls=<None>
+
+
+#
+# Options defined in cinder.volume.drivers.violin.v6000_common
+#
+
+# IP address or hostname of mg-a (string value)
+#gateway_mga=<None>
+
+# IP address or hostname of mg-b (string value)
+#gateway_mgb=<None>
+
+# Use igroups to manage targets and initiators (boolean value)
+#use_igroups=false
+
+# Global backend request timeout, in seconds (integer value)
+#request_timeout=300
+
+
+#
+# Options defined in cinder.volume.drivers.vmware.vmdk
+#
+
+# IP address for connecting to VMware ESX/VC server. (string
+# value)
+#vmware_host_ip=<None>
+
+# Username for authenticating with VMware ESX/VC server.
+# (string value)
+#vmware_host_username=<None>
+
+# Password for authenticating with VMware ESX/VC server.
+# (string value)
+#vmware_host_password=<None>
+
+# Optional VIM service WSDL Location e.g
+# http://<server>/vimService.wsdl. Optional over-ride to
+# default location for bug work-arounds. (string value)
+#vmware_wsdl_location=<None>
+
+# Number of times VMware ESX/VC server API must be retried
+# upon connection related issues. (integer value)
+#vmware_api_retry_count=10
+
+# The interval (in seconds) for polling remote tasks invoked
+# on VMware ESX/VC server. (floating point value)
+#vmware_task_poll_interval=0.5
+
+# Name for the folder in the VC datacenter that will contain
+# cinder volumes. (string value)
+#vmware_volume_folder=cinder-volumes
+
+# Timeout in seconds for VMDK volume transfer between Cinder
+# and Glance. (integer value)
+#vmware_image_transfer_timeout_secs=7200
+
+# Max number of objects to be retrieved per batch. Query
+# results will be obtained in batches from the server and not
+# in one shot. Server may still limit the count to something
+# less than the configured value. (integer value)
+#vmware_max_objects_retrieval=100
+
+# Optional string specifying the VMware VC server version. The
+# driver attempts to retrieve the version from VMware VC
+# server. Set this configuration only if you want to override
+# the VC server version. (string value)
+#vmware_host_version=<None>
+
+# Directory where virtual disks are stored during volume
+# backup and restore. (string value)
+#vmware_tmp_dir=/tmp
+
+
+#
+# Options defined in cinder.volume.drivers.windows.windows
+#
+
+# Path to store VHD backed volumes (string value)
+#windows_iscsi_lun_path=C:\iSCSIVirtualDisks
+
+
+#
+# Options defined in cinder.volume.drivers.xio
+#
+
+# Default storage pool for volumes. (integer value)
+#ise_storage_pool=1
+
+# Raid level for ISE volumes. (integer value)
+#ise_raid=1
+
+# Number of retries (per port) when establishing connection to
+# ISE management port. (integer value)
+#ise_connection_retries=5
+
+# Interval (secs) between retries. (integer value)
+#ise_retry_interval=1
+
+# Number on retries to get completion status after issuing a
+# command to ISE. (integer value)
+#ise_completion_retries=30
+
+
+#
+# Options defined in cinder.volume.drivers.zfssa.zfssanfs
+#
+
+# Data path IP address (string value)
+#zfssa_data_ip=<None>
+
+# HTTPS port number (string value)
+#zfssa_https_port=443
+
+# Options to be passed while mounting share over nfs (string
+# value)
+#zfssa_nfs_mount_options=
+
+# Storage pool name. (string value)
+#zfssa_nfs_pool=
+
+# Project name. (string value)
+#zfssa_nfs_project=NFSProject
+
+# Share name. (string value)
+#zfssa_nfs_share=nfs_share
+
+# Data compression. (string value)
+#zfssa_nfs_share_compression=off
+
+# Synchronous write bias-latency, throughput. (string value)
+#zfssa_nfs_share_logbias=latency
+
+# REST connection timeout. (seconds) (integer value)
+#zfssa_rest_timeout=<None>
+
+
+#
+# Options defined in cinder.volume.manager
+#
+
+# Driver to use for volume creation (string value)
+#volume_driver=cinder.volume.drivers.lvm.LVMISCSIDriver
+
+# Timeout for creating the volume to migrate to when
+# performing volume migration (seconds) (integer value)
+#migration_create_volume_timeout_secs=300
+
+# Offload pending volume delete during volume service startup
+# (boolean value)
+#volume_service_inithost_offload=false
+
+# FC Zoning mode configured (string value)
+#zoning_mode=none
+
+# User defined capabilities, a JSON formatted string
+# specifying key/value pairs. The key/value pairs can be used
+# by the CapabilitiesFilter to select between backends when
+# requests specify volume types. For example, specifying a
+# service level or the geographical location of a backend,
+# then creating a volume type to allow the user to select by
+# these different properties. (string value)
+#extra_capabilities={}
+
+
+[BRCD_FABRIC_EXAMPLE]
+
+#
+# Options defined in cinder.zonemanager.drivers.brocade.brcd_fabric_opts
+#
+
+# Management IP of fabric (string value)
+#fc_fabric_address=
+
+# Fabric user ID (string value)
+#fc_fabric_user=
+
+# Password for user (string value)
+#fc_fabric_password=
+
+# Connecting port (integer value)
+#fc_fabric_port=22
+
+# overridden zoning policy (string value)
+#zoning_policy=initiator-target
+
+# overridden zoning activation state (boolean value)
+#zone_activate=true
+
+# overridden zone name prefix (string value)
+#zone_name_prefix=<None>
+
+# Principal switch WWN of the fabric (string value)
+#principal_switch_wwn=<None>
+
+
+[CISCO_FABRIC_EXAMPLE]
+
+#
+# Options defined in cinder.zonemanager.drivers.cisco.cisco_fabric_opts
+#
+
+# Management IP of fabric (string value)
+#cisco_fc_fabric_address=
+
+# Fabric user ID (string value)
+#cisco_fc_fabric_user=
+
+# Password for user (string value)
+#cisco_fc_fabric_password=
+
+# Connecting port (integer value)
+#cisco_fc_fabric_port=22
+
+# overridden zoning policy (string value)
+#cisco_zoning_policy=initiator-target
+
+# overridden zoning activation state (boolean value)
+#cisco_zone_activate=true
+
+# overridden zone name prefix (string value)
+#cisco_zone_name_prefix=<None>
+
+# VSAN of the Fabric (string value)
+#cisco_zoning_vsan=<None>
+
+
+[database]
+
+#
+# Options defined in oslo.db.concurrency
+#
+
+# Enable the experimental use of thread pooling for all DB API
+# calls (boolean value)
+# Deprecated group/name - [DEFAULT]/dbapi_use_tpool
+#use_tpool=false
+
+
+[fc-zone-manager]
+
+#
+# Options defined in cinder.zonemanager.drivers.brocade.brcd_fc_zone_driver
+#
+
+# Southbound connector for zoning operation (string value)
+#brcd_sb_connector=cinder.zonemanager.drivers.brocade.brcd_fc_zone_client_cli.BrcdFCZoneClientCLI
+
+
+#
+# Options defined in cinder.zonemanager.drivers.cisco.cisco_fc_zone_driver
+#
+
+# Southbound connector for zoning operation (string value)
+#cisco_sb_connector=cinder.zonemanager.drivers.cisco.cisco_fc_zone_client_cli.CiscoFCZoneClientCLI
+
+
+#
+# Options defined in cinder.zonemanager.fc_zone_manager
+#
+
+# FC Zone Driver responsible for zone management (string
+# value)
+#zone_driver=cinder.zonemanager.drivers.brocade.brcd_fc_zone_driver.BrcdFCZoneDriver
+
+# Zoning policy configured by user; valid values include
+# "initiator-target" or "initiator" (string value)
+#zoning_policy=initiator-target
+
+# Comma separated list of Fibre Channel fabric names. This
+# list of names is used to retrieve other SAN credentials for
+# connecting to each SAN fabric (string value)
+#fc_fabric_names=<None>
+
+# FC SAN Lookup Service (string value)
+#fc_san_lookup_service=cinder.zonemanager.drivers.brocade.brcd_fc_san_lookup_service.BrcdFCSanLookupService
+
+
+[keymgr]
+
+#
+# Options defined in cinder.keymgr
+#
+
+# The full class name of the key manager API class (string
+# value)
+#api_class=cinder.keymgr.conf_key_mgr.ConfKeyManager
+
+
+#
+# Options defined in cinder.keymgr.conf_key_mgr
+#
+
+# Fixed key returned by key manager, specified in hex (string
+# value)
+#fixed_key=<None>
+
+
+#
+# Options defined in cinder.keymgr.key_mgr
+#
+
+# Authentication url for encryption service. (string value)
+#encryption_auth_url=http://localhost:5000/v3
+
+# Url for encryption service. (string value)
+#encryption_api_url=http://localhost:9311/v1
+
+
+[keystone_authtoken]
+
+#
+# Options defined in keystonemiddleware.auth_token
+#
+
+# Complete public Identity API endpoint. (string value)
+#auth_uri=<None>
+
+# API version of the admin Identity API endpoint. (string
+# value)
+#auth_version=<None>
+
+# Do not handle authorization requests within the middleware,
+# but delegate the authorization decision to downstream WSGI
+# components. (boolean value)
+#delay_auth_decision=false
+
+# Request timeout value for communicating with Identity API
+# server. (integer value)
+#http_connect_timeout=<None>
+
+# How many times are we trying to reconnect when communicating
+# with Identity API Server. (integer value)
+#http_request_max_retries=3
+
+# Env key for the swift cache. (string value)
+#cache=<None>
+
+# Required if identity server requires client certificate
+# (string value)
+#certfile=<None>
+
+# Required if identity server requires client certificate
+# (string value)
+#keyfile=<None>
+
+# A PEM encoded Certificate Authority to use when verifying
+# HTTPs connections. Defaults to system CAs. (string value)
+#cafile=<None>
+
+# Verify HTTPS connections. (boolean value)
+#insecure=false
+
+# Directory used to cache files related to PKI tokens. (string
+# value)
+#signing_dir=<None>
+
+# Optionally specify a list of memcached server(s) to use for
+# caching. If left undefined, tokens will instead be cached
+# in-process. (list value)
+# Deprecated group/name - [DEFAULT]/memcache_servers
+#memcached_servers=<None>
+
+# In order to prevent excessive effort spent validating
+# tokens, the middleware caches previously-seen tokens for a
+# configurable duration (in seconds). Set to -1 to disable
+# caching completely. (integer value)
+#token_cache_time=300
+
+# Determines the frequency at which the list of revoked tokens
+# is retrieved from the Identity service (in seconds). A high
+# number of revocation events combined with a low cache
+# duration may significantly reduce performance. (integer
+# value)
+#revocation_cache_time=10
+
+# (Optional) If defined, indicate whether token data should be
+# authenticated or authenticated and encrypted. Acceptable
+# values are MAC or ENCRYPT.  If MAC, token data is
+# authenticated (with HMAC) in the cache. If ENCRYPT, token
+# data is encrypted and authenticated in the cache. If the
+# value is not one of these options or empty, auth_token will
+# raise an exception on initialization. (string value)
+#memcache_security_strategy=<None>
+
+# (Optional, mandatory if memcache_security_strategy is
+# defined) This string is used for key derivation. (string
+# value)
+#memcache_secret_key=<None>
+
+# (Optional) Number of seconds memcached server is considered
+# dead before it is tried again. (integer value)
+#memcache_pool_dead_retry=300
+
+# (Optional) Maximum total number of open connections to every
+# memcached server. (integer value)
+#memcache_pool_maxsize=10
+
+# (Optional) Socket timeout in seconds for communicating with
+# a memcache server. (integer value)
+#memcache_pool_socket_timeout=3
+
+# (Optional) Number of seconds a connection to memcached is
+# held unused in the pool before it is closed. (integer value)
+#memcache_pool_unused_timeout=60
+
+# (Optional) Number of seconds that an operation will wait to
+# get a memcache client connection from the pool. (integer
+# value)
+#memcache_pool_conn_get_timeout=10
+
+# (Optional) Use the advanced (eventlet safe) memcache client
+# pool. The advanced pool will only work under python 2.x.
+# (boolean value)
+#memcache_use_advanced_pool=false
+
+# (Optional) Indicate whether to set the X-Service-Catalog
+# header. If False, middleware will not ask for service
+# catalog on token validation and will not set the X-Service-
+# Catalog header. (boolean value)
+#include_service_catalog=true
+
+# Used to control the use and type of token binding. Can be
+# set to: "disabled" to not check token binding. "permissive"
+# (default) to validate binding information if the bind type
+# is of a form known to the server and ignore it if not.
+# "strict" like "permissive" but if the bind type is unknown
+# the token will be rejected. "required" any form of token
+# binding is needed to be allowed. Finally the name of a
+# binding method that must be present in tokens. (string
+# value)
+#enforce_token_bind=permissive
+
+# If true, the revocation list will be checked for cached
+# tokens. This requires that PKI tokens are configured on the
+# identity server. (boolean value)
+#check_revocations_for_cached=false
+
+# Hash algorithms to use for hashing PKI tokens. This may be a
+# single algorithm or multiple. The algorithms are those
+# supported by Python standard hashlib.new(). The hashes will
+# be tried in the order given, so put the preferred one first
+# for performance. The result of the first hash will be stored
+# in the cache. This will typically be set to multiple values
+# only while migrating from a less secure algorithm to a more
+# secure one. Once all the old tokens are expired this option
+# should be set to a single value for better performance.
+# (list value)
+#hash_algorithms=md5
+
+# Prefix to prepend at the beginning of the path. Deprecated, use
+# identity_uri. (string value)
+#auth_admin_prefix =
+
+# Host providing the admin Identity API endpoint. Deprecated, use
+# identity_uri. (string value)
+#auth_host = 127.0.0.1
+
+# Port of the admin Identity API endpoint. Deprecated, use
+# identity_uri. (integer value)
+#auth_port = 35357
+
+# Protocol of the admin Identity API endpoint (http or https).
+# Deprecated, use identity_uri. (string value)
+auth_protocol=http
+
+# Complete admin Identity API endpoint. This should specify the
+# unversioned root endpoint e.g. https://localhost:35357/ (string
+# value)
+#identity_uri = <None>
+
+# This option is deprecated and may be removed in a future release.
+# Single shared secret with the Keystone configuration used for
+# bootstrapping a Keystone installation, or otherwise bypassing the
+# normal authentication process. This option should not be used, use
+# `admin_user` and `admin_password` instead. (string value)
+#admin_token = <None>
+
+# Service username. (string value)
+#admin_user = <None>
+
+# Service user password. (string value)
+#admin_password = <None>
+
+# Service tenant name. (string value)
+#admin_tenant_name = admin
+
+
+[matchmaker_redis]
+
+#
+# Options defined in oslo.messaging
+#
+
+# Host to locate redis. (string value)
+#host=127.0.0.1
+
+# Use this port to connect to redis host. (integer value)
+#port=6379
+
+# Password for Redis server (optional). (string value)
+#password=<None>
+
+
+[matchmaker_ring]
+
+#
+# Options defined in oslo.messaging
+#
+
+# Matchmaker ring file (JSON). (string value)
+# Deprecated group/name - [DEFAULT]/matchmaker_ringfile
+#ringfile=/etc/oslo/matchmaker_ring.json
+
+
+[oslo_messaging_amqp]
+
+#
+# Options defined in oslo.messaging
+#
+
+# address prefix used when sending to a specific server
+# (string value)
+#server_request_prefix=exclusive
+
+# address prefix used when broadcasting to all servers (string
+# value)
+#broadcast_prefix=broadcast
+
+# address prefix when sending to any server in group (string
+# value)
+#group_request_prefix=unicast
+
+# Name for the AMQP container (string value)
+#container_name=<None>
+
+# Timeout for inactive connections (in seconds) (integer
+# value)
+#idle_timeout=0
+
+# Debug: dump AMQP frames to stdout (boolean value)
+#trace=false
+
+# CA certificate PEM file for verifing server certificate
+# (string value)
+#ssl_ca_file=
+
+# Identifying certificate PEM file to present to clients
+# (string value)
+#ssl_cert_file=
+
+# Private key PEM file used to sign cert_file certificate
+# (string value)
+#ssl_key_file=
+
+# Password for decrypting ssl_key_file (if encrypted) (string
+# value)
+#ssl_key_password=<None>
+
+# Accept clients using either SSL or plain TCP (boolean value)
+#allow_insecure_clients=false
+
+
+[oslo_messaging_qpid]
+
+#
+# Options defined in oslo.messaging
+#
+
+# Use durable queues in AMQP. (boolean value)
+# Deprecated group/name - [DEFAULT]/rabbit_durable_queues
+#amqp_durable_queues=false
+
+# Auto-delete queues in AMQP. (boolean value)
+#amqp_auto_delete=false
+
+# Size of RPC connection pool. (integer value)
+#rpc_conn_pool_size=30
+
+# Qpid broker hostname. (string value)
+#qpid_hostname=localhost
+
+# Qpid broker port. (integer value)
+#qpid_port=5672
+
+# Qpid HA cluster host:port pairs. (list value)
+#qpid_hosts=$qpid_hostname:$qpid_port
+
+# Username for Qpid connection. (string value)
+#qpid_username=
+
+# Password for Qpid connection. (string value)
+#qpid_password=
+
+# Space separated list of SASL mechanisms to use for auth.
+# (string value)
+#qpid_sasl_mechanisms=
+
+# Seconds between connection keepalive heartbeats. (integer
+# value)
+#qpid_heartbeat=60
+
+# Transport to use, either 'tcp' or 'ssl'. (string value)
+#qpid_protocol=tcp
+
+# Whether to disable the Nagle algorithm. (boolean value)
+#qpid_tcp_nodelay=true
+
+# The number of prefetched messages held by receiver. (integer
+# value)
+#qpid_receiver_capacity=1
+
+# The qpid topology version to use.  Version 1 is what was
+# originally used by impl_qpid.  Version 2 includes some
+# backwards-incompatible changes that allow broker federation
+# to work.  Users should update to version 2 when they are
+# able to take everything down, as it requires a clean break.
+# (integer value)
+#qpid_topology_version=1
+
+
+[oslo_messaging_rabbit]
+
+#
+# Options defined in oslo.messaging
+#
+
+# Use durable queues in AMQP. (boolean value)
+# Deprecated group/name - [DEFAULT]/rabbit_durable_queues
+#amqp_durable_queues=false
+
+# Auto-delete queues in AMQP. (boolean value)
+#amqp_auto_delete=false
+
+# Size of RPC connection pool. (integer value)
+#rpc_conn_pool_size=30
+
+# SSL version to use (valid only if SSL enabled). Valid values
+# are TLSv1 and SSLv23. SSLv2, SSLv3, TLSv1_1, and TLSv1_2 may
+# be available on some distributions. (string value)
+#kombu_ssl_version=
+
+# SSL key file (valid only if SSL enabled). (string value)
+#kombu_ssl_keyfile=
+
+# SSL cert file (valid only if SSL enabled). (string value)
+#kombu_ssl_certfile=
+
+# SSL certification authority file (valid only if SSL
+# enabled). (string value)
+#kombu_ssl_ca_certs=
+
+# How long to wait before reconnecting in response to an AMQP
+# consumer cancel notification. (floating point value)
+#kombu_reconnect_delay=1.0
+
+# The RabbitMQ broker address where a single node is used.
+# (string value)
+#rabbit_host=localhost
+
+# The RabbitMQ broker port where a single node is used.
+# (integer value)
+#rabbit_port=5672
+
+# RabbitMQ HA cluster host:port pairs. (list value)
+#rabbit_hosts=$rabbit_host:$rabbit_port
+
+# Connect over SSL for RabbitMQ. (boolean value)
+#rabbit_use_ssl=false
+
+# The RabbitMQ userid. (string value)
+#rabbit_userid=guest
+
+# The RabbitMQ password. (string value)
+#rabbit_password=guest
+
+# The RabbitMQ login method. (string value)
+#rabbit_login_method=AMQPLAIN
+
+# The RabbitMQ virtual host. (string value)
+#rabbit_virtual_host=/
+
+# How frequently to retry connecting with RabbitMQ. (integer
+# value)
+#rabbit_retry_interval=1
+
+# How long to backoff for between retries when connecting to
+# RabbitMQ. (integer value)
+#rabbit_retry_backoff=2
+
+# Maximum number of RabbitMQ connection retries. Default is 0
+# (infinite retry count). (integer value)
+#rabbit_max_retries=0
+
+# Use HA queues in RabbitMQ (x-ha-policy: all). If you change
+# this option, you must wipe the RabbitMQ database. (boolean
+# value)
+#rabbit_ha_queues=false
+
+# Number of seconds after which the Rabbit broker is
+# considered down if heartbeat's keep-alive fails (0 disable
+# the heartbeat). (integer value)
+#heartbeat_timeout_threshold=60
+
+# How often times during the heartbeat_timeout_threshold we
+# check the heartbeat. (integer value)
+#heartbeat_rate=2
+
+# Deprecated, use rpc_backend=kombu+memory or rpc_backend=fake
+# (boolean value)
+#fake_rabbit=false
+
+
+[profiler]
+
+#
+# Options defined in cinder.service
+#
+
+# If False fully disable profiling feature. (boolean value)
+#profiler_enabled=false
+
+# If False doesn't trace SQL requests. (boolean value)
+#trace_sqlalchemy=false
+
+
+# Connection to db:
+sql_connection = sqlite:////var/lib/cinder/cinderdb
index c47d0a8021ae67c4b496bd541f257c3a05ae0c7d..01f41729437a424649a11f66479593e5dd3519cc 100644 (file)
@@ -1,49 +1,51 @@
 Source: cinder
 Section: net
 Priority: extra
-Maintainer: MOS packaging <mos-packaging@mirantis.com>
+Maintainer: PKG OpenStack <openstack-devel@lists.alioth.debian.org>
 Uploaders: Thomas Goirand <zigo@debian.org>,
 Build-Depends: debhelper (>= 9),
                dh-python,
                dh-systemd,
-               openstack-pkg-tools (>= 40~),
+               openstack-pkg-tools (>= 50~),
                po-debconf,
                python-all,
                python-pbr (>= 1.8),
                python-setuptools,
-               python-sphinx,
+               python-sphinx (>= 1.2.1),
 Build-Depends-Indep: bandit (>= 0.13.2),
                      git,
                      python-anyjson,
-                     python-babel,
+                     python-babel (>= 2.3.4),
                      python-barbicanclient (>= 4.0.0),
                      python-coverage,
-                     python-crypto,
+                     python-crypto (>= 2.6),
                      python-decorator (>= 3.4.0),
                      python-ddt (>= 1.0.1),
                      python-enum34,
                      python-eventlet (>= 0.18.4),
-                     python-fixtures (>= 1.3.1),
+                     python-fixtures (>= 3.0.0),
                      python-glanceclient (>= 1:2.0.0),
                      python-googleapi (>= 1.4.2),
-                     python-greenlet,
+                     python-greenlet (>= 0.3.2),
                      python-hacking (>= 0.10.0),
-                     python-httplib2,
-                     python-iso8601,
+                     python-httplib2 (>= 0.7.5),
+                     python-ipaddress (>= 1.0.7),
+                     python-iso8601 (>= 0.1.11),
+                     python-keystoneauth1 (>= 2.10.0),
                      python-keystoneclient (>= 1:1.7.0),
                      python-keystonemiddleware (>= 4.0.0),
-                     python-lxml,
+                     python-lxml (>= 2.3),
                      python-migrate (>= 0.9.6),
-                     python-mock (>= 1.3),
+                     python-mock (>= 2.0),
                      python-mox3,
                      python-mysqldb,
                      python-novaclient (>= 2:2.29.0),
-                     python-oauth2client (>= 1.5.0),
+                     python-oauth2client (>= 2.0.1),
                      python-os-brick (>= 1.3.0),
-                     python-os-testr (>= 0.4.2),
+                     python-os-testr (>= 0.7.0),
                      python-os-win (>= 0.2.3),
                      python-oslo.concurrency (>= 3.8.0),
-                     python-oslo.config (>= 1:3.10.0),
+                     python-oslo.config (>= 1:3.14.0),
                      python-oslo.context (>= 2.4.0),
                      python-oslo.db (>= 4.1.0),
                      python-oslo.i18n (>= 2.1.0),
@@ -51,32 +53,33 @@ Build-Depends-Indep: bandit (>= 0.13.2),
                      python-oslo.messaging (>= 5.2.0),
                      python-oslo.middleware (>= 3.0.0),
                      python-oslo.policy (>= 1.9.0),
+                     python-oslo.privsep,
                      python-oslo.reports (>= 1.0.0),
-                     python-oslo.rootwrap (>= 2.0.0),
+                     python-oslo.rootwrap (>= 5.0.0),
                      python-oslo.serialization (>= 2.0.0),
                      python-oslo.service (>= 1.10.0),
-                     python-oslo.utils (>= 3.11.0),
-                     python-oslo.versionedobjects (>= 1.9.1),
-                     python-oslo.vmware (>= 1.16.0),
+                     python-oslo.utils (>= 3.16.0),
+                     python-oslo.versionedobjects (>= 1.13.0),
+                     python-oslo.vmware (>= 2.11.0),
                      python-oslosphinx (>= 2.5.0),
                      python-oslotest (>= 1.10.0),
                      python-osprofiler (>= 1.3.0),
-                     python-paramiko (>= 2.0.0),
+                     python-paramiko (>= 2.0),
                      python-paste,
-                     python-pastedeploy,
+                     python-pastedeploy (>= 1.5.0),
                      python-psutil,
                      python-psycopg2 (>= 2.5),
                      python-pymysql,
-                     python-pyparsing,
+                     python-pyparsing (>= 2.0.1),
                      python-pywbem,
                      python-requests (>= 2.10.0),
-                     python-retrying,
-                     python-routes,
+                     python-retrying (>= 1.2.3),
+                     python-routes (>= 1.12.3),
                      python-rtslib-fb (>= 2.1.57),
-                     python-simplejson,
+                     python-simplejson (>= 2.2.0),
                      python-six (>= 1.9.0),
                      python-sqlalchemy (>= 1.0.10),
-                     python-stevedore (>= 1.10.0),
+                     python-stevedore (>= 1.16.0),
                      python-swiftclient (>= 1:2.2.0),
                      python-taskflow (>= 1.26.0),
                      python-tempest-lib (>= 0.14.0),
@@ -84,11 +87,13 @@ Build-Depends-Indep: bandit (>= 0.13.2),
                      python-testscenarios,
                      python-testtools (>= 1.4.0),
                      python-tooz (>= 1.28.0),
-                     python-tz,
-                     python-webob,
+                     python-tz (>= 2013.6),
+                     python-webob (>= 1.2.3),
                      subunit,
                      testrepository,
-Standards-Version: 3.9.7
+                     python-oslo.privsep,
+                     python-suds (>= 0.6),
+Standards-Version: 3.9.8
 Vcs-Browser: https://anonscm.debian.org/cgit/openstack/cinder.git/
 Vcs-Git: https://anonscm.debian.org/git/openstack/cinder.git
 Homepage: https://github.com/openstack/cinder
@@ -99,9 +104,8 @@ Architecture: all
 Depends: python-babel (>= 2.3.4),
          python-barbicanclient (>= 4.0.0),
          python-ceph,
-         python-crypto,
+         python-crypto (>= 2.6),
          python-decorator (>= 3.4.0),
-         python-enum34,
          python-eventlet (>= 0.18.4),
          python-glanceclient (>= 1:2.0.0),
          python-googleapi (>= 1.4.2),
@@ -110,17 +114,18 @@ Depends: python-babel (>= 2.3.4),
          python-hp3parclient,
          python-ipaddress (>= 1.0.7),
          python-iso8601 (>= 0.1.11),
+         python-keystoneauth1 (>= 2.10.0),
          python-keystoneclient (>= 1:1.7.0),
          python-keystonemiddleware (>= 4.0.0),
          python-lxml (>= 2.3),
          python-migrate (>= 0.9.6),
          python-mysqldb,
          python-novaclient (>= 2:2.29.0),
-         python-oauth2client (>= 1.5.0),
+         python-oauth2client (>= 2.0.1),
          python-os-brick (>= 1.3.0),
          python-os-win (>= 0.2.3),
          python-oslo.concurrency (>= 3.8.0),
-         python-oslo.config (>= 1:3.10.0),
+         python-oslo.config (>= 1:3.14.0),
          python-oslo.context (>= 2.4.0),
          python-oslo.db (>= 4.1.0),
          python-oslo.i18n (>= 2.1.0),
@@ -129,35 +134,35 @@ Depends: python-babel (>= 2.3.4),
          python-oslo.middleware (>= 3.0.0),
          python-oslo.policy (>= 1.9.0),
          python-oslo.reports (>= 1.0.0),
-         python-oslo.rootwrap (>= 2.0.0),
+         python-oslo.privsep,
+         python-oslo.rootwrap (>= 5.0.0),
          python-oslo.serialization (>= 2.0.0),
          python-oslo.service (>= 1.10.0),
-         python-oslo.utils (>= 3.11.0),
-         python-oslo.versionedobjects (>= 1.9.1),
-         python-oslo.vmware (>= 1.16.0),
+         python-oslo.utils (>= 3.16.0),
+         python-oslo.versionedobjects (>= 1.13.0),
+         python-oslo.vmware (>= 2.11.0),
          python-osprofiler (>= 1.3.0),
-         python-paramiko (>= 2.0.0),
+         python-paramiko (>= 2.0),
          python-paste,
-         python-pastedeploy,
+         python-pastedeploy (>= 1.5.0),
          python-pbr (>= 1.8),
          python-psutil,
          python-psycopg2 (>= 2.5),
          python-pymysql,
          python-pyparsing (>= 2.0.1),
          python-requests (>= 2.10.0),
-         python-retrying,
-         python-routes,
+         python-retrying (>= 1.2.3),
+         python-routes (>= 1.12.3),
          python-rtslib-fb (>= 2.1.57),
-         python-simplejson,
+         python-simplejson (>= 2.2.0),
          python-six (>= 1.9.0),
          python-sqlalchemy (>= 1.0.10),
-         python-stevedore (>= 1.10.0),
-         python-suds (>= 0.6),
+         python-stevedore (>= 1.16.0),
          python-swiftclient (>= 1:2.2.0),
          python-taskflow (>= 1.26.0),
          python-tooz (>= 1.28.0),
          python-tz (>= 2013.6),
-         python-webob,
+         python-webob (>= 1.2.3),
          ${misc:Depends},
          ${python:Depends},
 Description: OpenStack block storage system - Python libraries
@@ -200,7 +205,7 @@ Architecture: all
 Depends: adduser,
          cinder-common (= ${binary:Version}),
          debconf,
-         python-keystoneclient,
+         python-keystoneclient (>= 1.7.0),
          python-openstackclient,
          q-text-as-data,
          ${misc:Depends},
index 423124d0360cb89cdf6d21d24157528a6b60f4d2..5c068fda3a10b57336e9a0f9353a310888858e3e 100644 (file)
@@ -1,6 +1,6 @@
 Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
 Upstream-Name: cinder
-Source: git://github.com/openstack/cinder.git
+Source: https://github.com/openstack/cinder
 
 Files: *
 Copyright: (c) 2010 United States Government as represented
index c737cbbfb6d7a8df6ccb41a5d9bf6f3397635a49..8cb45b92007bf1ca3eb2d80ebf9e4f0793d3b1a6 100644 (file)
@@ -1,6 +1,6 @@
 [DEFAULT]
 upstream-branch = master
-debian-branch = debian/mitaka
+debian-branch = debian/newton
 upstream-tag = %(version)s
 compression = xz
 
diff --git a/xenial/debian/patches/Missing_configuration_opts_from_cinder.sample.conf.patch b/xenial/debian/patches/Missing_configuration_opts_from_cinder.sample.conf.patch
deleted file mode 100644 (file)
index 456d85d..0000000
+++ /dev/null
@@ -1,276 +0,0 @@
-Subject: Missing configuration opts from cinder.sample.conf
- The logic for writing opts registered with register_opt() to the
- auto-generated opts.py file was flawed in that the directories where
- there were opts being registered with this method would be imported,
- but the actual opt would be missed when looking through the file for
- the name of the opt being registered. Now the singular opts are being
- caught and written to opts.py for the oslo-config-generator to process.
- .
- The 'backend' section was added to generate_cinder_opts.py
- due to some of the missing opts being a part of that section.
- .
- Also the way some of the opts that were being registered with groups
- were incorrect and so this addresses those in both how they were
- processed in generate_cinder_opts.py and the files in which they are being
- registered.
- .
- There is also one change to the name of an opt in cinder/volume/api.py.
- Instances such as this one will be caught by the in-progress hacking
- check patch: https://review.openstack.org/#/c/223375/
-Author: Kendall Nelson <kjnelson@us.ibm.com>
-Date: Mon, 21 Sep 2015 18:11:19 +0000 (-0500)
-X-Git-Url: https://review.openstack.org/gitweb?p=openstack%2Fcinder.git;a=commitdiff_plain;h=10f5e92e1246dd33b244c4a7031bb81b17b240a3
-Change-Id: I8d333d7529d40f3a3b3651ca3a52c0048d96b99a
-Bug-Ubuntu: https://bugs.launchpad.net/cinder/+bug/1498122
-Origin: upstream, https://review.openstack.org/#/c/225974/
-Last-Update: 2015-09-01
-
-diff --git a/cinder/config/generate_cinder_opts.py b/cinder/config/generate_cinder_opts.py
-index 9fa8d13..50c206b 100644
---- a/cinder/config/generate_cinder_opts.py
-+++ b/cinder/config/generate_cinder_opts.py
-@@ -19,6 +19,8 @@ if __name__ == "__main__":
-     opt_file = open("cinder/opts.py", 'a')
-     opt_dict = {}
-     dir_trees_list = []
-+    REGISTER_OPTS_STR = "CONF.register_opts("
-+    REGISTER_OPT_STR = "CONF.register_opt("
-     opt_file.write("import copy\n")
-     opt_file.write("import itertools\n\n")
-@@ -31,11 +33,11 @@ if __name__ == "__main__":
-                      '+  | sed -e "s/^' + basedir +
-                      '\///g" | sort -u')
--    cmd_opts = common_string % "CONF.register_opts("
-+    cmd_opts = common_string % REGISTER_OPTS_STR
-     output_opts = subprocess.check_output('{}'.format(cmd_opts), shell = True)
-     dir_trees_list = output_opts.split()
--    cmd_opt = common_string % "CONF.register_opt("
-+    cmd_opt = common_string % REGISTER_OPT_STR
-     output_opt = subprocess.check_output('{}'.format(cmd_opt), shell = True)
-     temp_list = output_opt.split()
-@@ -84,21 +86,29 @@ if __name__ == "__main__":
-                             'BRCD_FABRIC_EXAMPLE': [],
-                             'CISCO_FABRIC_EXAMPLE': [],
-                             'profiler': [],
-+                            'backend': [],
-                             'DEFAULT': [], }
-     def _write_item(opts):
-         list_name = opts[-3:]
--        if list_name.lower() == "opts":
-+        if list_name.lower() == "opt":
-             opt_file.write("            [" + opts.strip("\n") + "],\n")
-         else:
-             opt_file.write("            " + opts.strip("\n") + ",\n")
-+    def _retrieve_name(aline):
-+        if REGISTER_OPT_STR in aline:
-+            str_to_replace = REGISTER_OPT_STR
-+        else:
-+            str_to_replace = REGISTER_OPTS_STR
-+        return aline.replace(str_to_replace, "")
-+
-     for key in opt_dict:
-         fd = os.open(opt_dict[key], os.O_RDONLY)
-         afile = os.fdopen(fd, "r")
-         for aline in afile:
--            exists = aline.find("CONF.register_opts(")
-+            exists = aline.find("CONF.register_opt")
-             if exists != -1:
-                 # TODO(kjnelson) FIX THIS LATER. These are instances where
-                 # CONF.register_opts is happening without actually registering
-@@ -109,41 +119,48 @@ if __name__ == "__main__":
-                     continue
-                 if aline.find("fc-zone-manager") != -1:
--                    fc_zm_list = aline.replace("CONF.register_opts(", '')
--                    fc_zm_list = fc_zm_list.replace(", 'fc-zone-manager')", '')
--                    fc_zm_list.strip()
-+                    fc_zm_list = _retrieve_name(aline)
-+                    replace_string = ", group='fc-zone-manager')"
-+                    fc_zm_list = fc_zm_list.replace(replace_string, '')
-+                    fc_zm_list = fc_zm_list.strip()
-                     line = key + "." + fc_zm_list
-                     registered_opts_dict['fc-zone-manager'].append(line)
-                 elif aline.find("keymgr") != -1:
--                    keymgr_list = aline.replace("CONF.register_opts(", '')
-+                    keymgr_list = _retrieve_name(aline)
-                     keymgr_list = keymgr_list.replace(", group='keymgr')", '')
--                    keymgr_list = keymgr_list.replace(", 'keymgr')", '')
--                    keymgr_list.strip()
-+                    keymgr_list = keymgr_list.strip()
-                     line = key + "." + keymgr_list
-                     registered_opts_dict['keymgr'].append(line)
-                 elif aline.find("BRCD_FABRIC_EXAMPLE") != -1:
--                    brcd_list = aline.replace("CONF.register_opts(", '')
--                    replace_string = ", 'BRCD_FABRIC_EXAMPLE')"
-+                    brcd_list = _retrieve_name(aline)
-+                    replace_string = ", group='BRCD_FABRIC_EXAMPLE')"
-                     brcd_list = brcd_list.replace(replace_string, '')
--                    brcd_list.strip()
-+                    brcd_list = brcd_list.strip()
-                     line = key + "." + brcd_list
-                     registered_opts_dict['BRCD_FABRIC_EXAMPLE'].append(line)
-                 elif aline.find("CISCO_FABRIC_EXAMPLE") != -1:
--                    cisco_list = aline.replace("CONF.register_opts(", '')
--                    replace_string = ", 'CISCO_FABRIC_EXAMPLE')"
-+                    cisco_list = _retrieve_name(aline)
-+                    replace_string = ", group='CISCO_FABRIC_EXAMPLE')"
-                     cisco_list = cisco_list.replace(replace_string, '')
--                    cisco_list.strip()
-+                    cisco_list = cisco_list.strip()
-                     line = key + "." + cisco_list
-                     registered_opts_dict['CISCO_FABRIC_EXAMPLE'].append(line)
-                 elif aline.find("profiler") != -1:
--                    profiler_list = aline.replace("CONF.register_opts(", '')
-+                    profiler_list = _retrieve_name(aline)
-                     replace_string = ', group="profiler")'
-                     profiler_list = profiler_list.replace(replace_string, '')
--                    profiler_list.strip()
-+                    profiler_list = profiler_list.strip()
-                     line = key + "." + profiler_list
-                     registered_opts_dict['profiler'].append(line)
-+                elif aline.find("backend") != -1:
-+                    backend_list = _retrieve_name(aline)
-+                    replace_string = ', group=backend)'
-+                    backend_list = backend_list.replace(replace_string, '')
-+                    backend_list = backend_list.strip()
-+                    line = key + "." + backend_list
-+                    registered_opts_dict['backend'].append(line)
-                 else:
--                    default_list = aline.replace("CONF.register_opts(", '')
-+                    default_list = _retrieve_name(aline)
-                     default_list = default_list.replace(')', '').strip()
-                     line = key + "." + default_list
-                     registered_opts_dict['DEFAULT'].append(line)
-@@ -166,6 +183,14 @@ if __name__ == "__main__":
-     for item in registered_opts_dict["profiler"]:
-         _write_item(item)
-+    backend_str = ("    )),\n"
-+                   "    ('backend',\n"
-+                   "    itertools.chain(\n")
-+    opt_file.write(backend_str)
-+
-+    for item in registered_opts_dict["backend"]:
-+        _write_item(item)
-+
-     cisco_str = ("    )),\n"
-                  "    ('CISCO_FABRIC_EXAMPLE',\n"
-                  "    itertools.chain(\n")
-diff --git a/cinder/keymgr/key_mgr.py b/cinder/keymgr/key_mgr.py
-index 4d8bbdb..71ed7a7 100644
---- a/cinder/keymgr/key_mgr.py
-+++ b/cinder/keymgr/key_mgr.py
-@@ -32,7 +32,7 @@ encryption_opts = [
- ]
- CONF = cfg.CONF
--CONF.register_opts(encryption_opts, 'keymgr')
-+CONF.register_opts(encryption_opts, group='keymgr')
- @six.add_metaclass(abc.ABCMeta)
-diff --git a/cinder/volume/api.py b/cinder/volume/api.py
-index 03f1d74..5db3a7b 100644
---- a/cinder/volume/api.py
-+++ b/cinder/volume/api.py
-@@ -52,12 +52,13 @@ from cinder.volume import utils as volume_utils
- from cinder.volume import volume_types
--allow_force_upload = cfg.BoolOpt('enable_force_upload',
--                                 default=False,
--                                 help='Enables the Force option on '
--                                      'upload_to_image. This enables '
--                                      'running upload_volume on in-use '
--                                      'volumes for backends that support it.')
-+allow_force_upload_opt = cfg.BoolOpt('enable_force_upload',
-+                                     default=False,
-+                                     help='Enables the Force option on '
-+                                          'upload_to_image. This enables '
-+                                          'running upload_volume on in-use '
-+                                          'volumes for backends that '
-+                                          'support it.')
- volume_host_opt = cfg.BoolOpt('snapshot_same_host',
-                               default=True,
-                               help='Create volume from snapshot at the host '
-@@ -73,7 +74,7 @@ az_cache_time_opt = cfg.IntOpt('az_cache_duration',
-                                     'seconds')
- CONF = cfg.CONF
--CONF.register_opt(allow_force_upload)
-+CONF.register_opt(allow_force_upload_opt)
- CONF.register_opt(volume_host_opt)
- CONF.register_opt(volume_same_az_opt)
- CONF.register_opt(az_cache_time_opt)
-diff --git a/cinder/zonemanager/drivers/brocade/brcd_fabric_opts.py b/cinder/zonemanager/drivers/brocade/brcd_fabric_opts.py
-index 6c1276a..26c8fbe 100644
---- a/cinder/zonemanager/drivers/brocade/brcd_fabric_opts.py
-+++ b/cinder/zonemanager/drivers/brocade/brcd_fabric_opts.py
-@@ -50,7 +50,7 @@ brcd_zone_opts = [
- ]
- CONF = cfg.CONF
--CONF.register_opts(brcd_zone_opts, 'BRCD_FABRIC_EXAMPLE')
-+CONF.register_opts(brcd_zone_opts, group='BRCD_FABRIC_EXAMPLE')
- LOG = logging.getLogger(__name__)
-diff --git a/cinder/zonemanager/drivers/brocade/brcd_fc_zone_driver.py b/cinder/zonemanager/drivers/brocade/brcd_fc_zone_driver.py
-index 696af1f..506888d 100644
---- a/cinder/zonemanager/drivers/brocade/brcd_fc_zone_driver.py
-+++ b/cinder/zonemanager/drivers/brocade/brcd_fc_zone_driver.py
-@@ -52,7 +52,7 @@ brcd_opts = [
- ]
- CONF = cfg.CONF
--CONF.register_opts(brcd_opts, 'fc-zone-manager')
-+CONF.register_opts(brcd_opts, group='fc-zone-manager')
- class BrcdFCZoneDriver(fc_zone_driver.FCZoneDriver):
-diff --git a/cinder/zonemanager/drivers/cisco/cisco_fabric_opts.py b/cinder/zonemanager/drivers/cisco/cisco_fabric_opts.py
-index c105b31..0aa0cea 100644
---- a/cinder/zonemanager/drivers/cisco/cisco_fabric_opts.py
-+++ b/cinder/zonemanager/drivers/cisco/cisco_fabric_opts.py
-@@ -47,7 +47,7 @@ cisco_zone_opts = [
- ]
- CONF = cfg.CONF
--CONF.register_opts(cisco_zone_opts, 'CISCO_FABRIC_EXAMPLE')
-+CONF.register_opts(cisco_zone_opts, group='CISCO_FABRIC_EXAMPLE')
- def load_fabric_configurations(fabric_names):
-diff --git a/cinder/zonemanager/drivers/cisco/cisco_fc_zone_driver.py b/cinder/zonemanager/drivers/cisco/cisco_fc_zone_driver.py
-index 98d4535..85d69b6 100644
---- a/cinder/zonemanager/drivers/cisco/cisco_fc_zone_driver.py
-+++ b/cinder/zonemanager/drivers/cisco/cisco_fc_zone_driver.py
-@@ -50,7 +50,7 @@ cisco_opts = [
- ]
- CONF = cfg.CONF
--CONF.register_opts(cisco_opts, 'fc-zone-manager')
-+CONF.register_opts(cisco_opts, group='fc-zone-manager')
- class CiscoFCZoneDriver(fc_zone_driver.FCZoneDriver):
-diff --git a/cinder/zonemanager/fc_zone_manager.py b/cinder/zonemanager/fc_zone_manager.py
-index ecbbe23..011890b 100644
---- a/cinder/zonemanager/fc_zone_manager.py
-+++ b/cinder/zonemanager/fc_zone_manager.py
-@@ -64,7 +64,7 @@ zone_manager_opts = [
- ]
- CONF = cfg.CONF
--CONF.register_opts(zone_manager_opts, 'fc-zone-manager')
-+CONF.register_opts(zone_manager_opts, group='fc-zone-manager')
- class ZoneManager(fc_common.FCCommon):
diff --git a/xenial/debian/patches/install-missing-files.patch b/xenial/debian/patches/install-missing-files.patch
new file mode 100644 (file)
index 0000000..d7244fa
--- /dev/null
@@ -0,0 +1,9 @@
+Description: Install missing files
+Author: Thomas Goirand <zigo@debian.org>
+Forwarded: not-needed
+Last-Update: 2016-03-22
+
+--- /dev/null  2015-11-25 10:13:06.495404578 +0000
++++ b/MANIFEST.in      2016-03-22 10:59:45.903008926 +0000
+@@ -0,0 +1 @@
++recursive-include cinder *
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..5ab81b52bb7deba835c6201e7692bc7a2c20dcf4 100644 (file)
@@ -0,0 +1 @@
+install-missing-files.patch
\ No newline at end of file
index f4786aa70c0665bee762c3f6737c59859aee01b3..bb95be5936b25d859eb32f002c51fb1e5d64b37c 100644 (file)
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: cinder 2013.1.2-4\n"
 "Report-Msgid-Bugs-To: cinder@packages.debian.org\n"
-"POT-Creation-Date: 2013-12-19 16:02+0800\n"
+"POT-Creation-Date: 2016-03-29 12:24+0000\n"
 "PO-Revision-Date: 2013-08-28 12:31+0200\n"
 "Last-Translator: Michal Simunek <michal.simunek@gmail.com>\n"
 "Language-Team: Czech <debian-l10n-czech@lists.debian.org>\n"
@@ -245,31 +245,48 @@ msgstr ""
 "Zadejte IP adresu serveru keystone, aby se mohlo cinder-api spojit s "
 "Keystone a provozovat službu Cinder a vytvářet koncové body."
 
-#. Type: password
+#. Type: string
 #. Description
 #: ../cinder-api.templates:4001
-msgid "Keystone authentication token:"
+#, fuzzy
+#| msgid "Keystone authentication token:"
+msgid "Keystone admin name:"
 msgstr "Autentizační klíč pro Keystone:"
 
+#. Type: string
+#. Description
+#. Type: string
+#. Description
 #. Type: password
 #. Description
-#: ../cinder-api.templates:4001
+#: ../cinder-api.templates:4001 ../cinder-api.templates:5001
+#: ../cinder-api.templates:6001
 msgid ""
-"To configure its endpoint in Keystone, cinder-api needs the Keystone "
-"authentication token."
+"To register the service endpoint, this package needs to know the Admin "
+"login, name, project name, and password to the Keystone server."
 msgstr ""
-"Aby mohlo cinder-api nastavit v Keystone svůj koncový bod, potřebuje "
-"autentizační klíč pro Keystone."
 
 #. Type: string
 #. Description
 #: ../cinder-api.templates:5001
+msgid "Keystone admin project name:"
+msgstr ""
+
+#. Type: password
+#. Description
+#: ../cinder-api.templates:6001
+msgid "Keystone admin password:"
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../cinder-api.templates:7001
 msgid "Cinder endpoint IP address:"
 msgstr "IP adresa koncového bodu Cinder:"
 
 #. Type: string
 #. Description
-#: ../cinder-api.templates:5001
+#: ../cinder-api.templates:7001
 msgid "Please enter the IP address that will be used to contact Cinder."
 msgstr ""
 "Zadejte IP adresu, která se bude používat ke spojení s Cinder (např: IP "
@@ -277,7 +294,7 @@ msgstr ""
 
 #. Type: string
 #. Description
-#: ../cinder-api.templates:5001
+#: ../cinder-api.templates:7001
 msgid ""
 "This IP address should be accessible from the clients that will use this "
 "service, so if you are installing a public cloud, this should be a public IP "
@@ -289,13 +306,13 @@ msgstr ""
 
 #. Type: string
 #. Description
-#: ../cinder-api.templates:6001
+#: ../cinder-api.templates:8001
 msgid "Name of the region to register:"
 msgstr "Název registrované oblasti:"
 
 #. Type: string
 #. Description
-#: ../cinder-api.templates:6001
+#: ../cinder-api.templates:8001
 msgid ""
 "OpenStack supports using availability zones, with each region representing a "
 "location. Please enter the zone that you wish to use when registering the "
@@ -305,6 +322,13 @@ msgstr ""
 "představuje místo. Zadejte prosím oblast, kterou chcete použít při "
 "registraci koncového bodu."
 
+#~ msgid ""
+#~ "To configure its endpoint in Keystone, cinder-api needs the Keystone "
+#~ "authentication token."
+#~ msgstr ""
+#~ "Aby mohlo cinder-api nastavit v Keystone svůj koncový bod, potřebuje "
+#~ "autentizační klíč pro Keystone."
+
 #~ msgid "Start Cinder services at boot?"
 #~ msgstr "Spouštět služby cinder při zavádění?"
 
index 12368e492cb90bb609f2682ac5c4f77fb09e4342..541e6c60171666a1819e33a55f765aa9cc06ff86 100644 (file)
@@ -1,14 +1,14 @@
 # Danish translation cinder.
-# Copyright (C) 2014 cinder og nedenstående oversættere.
+# Copyright (C) 2016 cinder og nedenstående oversættere.
 # This file is distributed under the same license as the cinder package.
-# Joe Hansen (joedalton2@yahoo.dk), 2013, 2014.
+# Joe Hansen (joedalton2@yahoo.dk), 2013, 2014, 2016.
 #
 msgid ""
 msgstr ""
 "Project-Id-Version: cinder\n"
 "Report-Msgid-Bugs-To: cinder@packages.debian.org\n"
-"POT-Creation-Date: 2013-12-19 16:02+0800\n"
-"PO-Revision-Date: 2014-02-22 12:42+0000\n"
+"POT-Creation-Date: 2016-03-29 12:24+0000\n"
+"PO-Revision-Date: 2016-07-09 12:42+0000\n"
 "Last-Translator: Joe Hansen <joedalton2@yahoo.dk>\n"
 "Language-Team: Danish <debian-l10n-danish@lists.debian.org>\n"
 "Language: da\n"
@@ -167,8 +167,8 @@ msgid ""
 "In order to interoperate with other components of OpenStack, this package "
 "needs to connect to a central RabbitMQ server."
 msgstr ""
-"Denne pakke skal forbinde til en central RabbitMQ-server, for at fungere "
-"med andre komponenter i OpenStack."
+"Denne pakke skal forbinde til en central RabbitMQ-server, for at fungere med "
+"andre komponenter i OpenStack."
 
 #. Type: string
 #. Description
@@ -198,7 +198,8 @@ msgstr "Adgangskode for forbindelsen til RabbitMQ-serveren:"
 #. Description
 #: ../cinder-common.templates:10001
 msgid "Please specify the password used to connect to the RabbitMQ server."
-msgstr "Angiv venligt adgangskoden brugt til at forbinde med RAbbitMQ-serveren."
+msgstr ""
+"Angiv venligt adgangskoden brugt til at forbinde med RAbbitMQ-serveren."
 
 #. Type: boolean
 #. Description
@@ -244,37 +245,55 @@ msgstr ""
 "Indtast IP-adressen for din Keystoneserver, så at cinder-api kan kontakte "
 "Keystone for at udføre Cindertjenesten og slutpunktsoprettelse."
 
-#. Type: password
+#. Type: string
 #. Description
 #: ../cinder-api.templates:4001
-msgid "Keystone authentication token:"
-msgstr "Godkendelsessymbol for Keystone:"
+msgid "Keystone admin name:"
+msgstr "Administratornavn for Keystone:"
 
+#. Type: string
+#. Description
+#. Type: string
+#. Description
 #. Type: password
 #. Description
-#: ../cinder-api.templates:4001
+#: ../cinder-api.templates:4001 ../cinder-api.templates:5001
+#: ../cinder-api.templates:6001
 msgid ""
-"To configure its endpoint in Keystone, cinder-api needs the Keystone "
-"authentication token."
+"To register the service endpoint, this package needs to know the Admin "
+"login, name, project name, and password to the Keystone server."
 msgstr ""
-"For at konfigurere sit slutpunkt i Keystone skal cinder-api bruge Keystones "
-"godkendelsessymbol."
+"For at registrere tjenesteslutpunkt skal denne pakke kende til "
+"administratorlogind'et, navn, projektnavn og adgangskode for "
+"Keystoneserveren."
 
 #. Type: string
 #. Description
 #: ../cinder-api.templates:5001
+msgid "Keystone admin project name:"
+msgstr "Projektnavn for Keystoneadministratoren:"
+
+#. Type: password
+#. Description
+#: ../cinder-api.templates:6001
+msgid "Keystone admin password:"
+msgstr "Adgangskode for Keystoneadministratoren:"
+
+#. Type: string
+#. Description
+#: ../cinder-api.templates:7001
 msgid "Cinder endpoint IP address:"
 msgstr "IP-adresse for Cinderslutpunkt:"
 
 #. Type: string
 #. Description
-#: ../cinder-api.templates:5001
+#: ../cinder-api.templates:7001
 msgid "Please enter the IP address that will be used to contact Cinder."
 msgstr "Indtast IP-adressen som vil blive brugt til at kontakter Cinder."
 
 #. Type: string
 #. Description
-#: ../cinder-api.templates:5001
+#: ../cinder-api.templates:7001
 msgid ""
 "This IP address should be accessible from the clients that will use this "
 "service, so if you are installing a public cloud, this should be a public IP "
@@ -286,13 +305,13 @@ msgstr ""
 
 #. Type: string
 #. Description
-#: ../cinder-api.templates:6001
+#: ../cinder-api.templates:8001
 msgid "Name of the region to register:"
 msgstr "Navn på regionen der skal registreres:"
 
 #. Type: string
 #. Description
-#: ../cinder-api.templates:6001
+#: ../cinder-api.templates:8001
 msgid ""
 "OpenStack supports using availability zones, with each region representing a "
 "location. Please enter the zone that you wish to use when registering the "
index 16b9cd0a18da941018155e0b81b69637be6a6d63..b703e5bb640b009f898a354cebfaef375485283d 100644 (file)
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: cinder 2013.2.1-2\n"
 "Report-Msgid-Bugs-To: cinder@packages.debian.org\n"
-"POT-Creation-Date: 2013-12-19 16:02+0800\n"
+"POT-Creation-Date: 2016-03-29 12:24+0000\n"
 "PO-Revision-Date: 2014-01-23 19:01+0100\n"
 "Last-Translator: Chris Leick <c.leick@vollbio.de>\n"
 "Language-Team: German <debian-l10n-german@lists.debian.org>\n"
@@ -30,8 +30,8 @@ msgid ""
 "make sure you have the following information:"
 msgstr ""
 "Für die Benutzung durch Cinder wurde keine Datenbank eingerichtet. Bevor Sie "
-"fortfahren, sollten Sie sich versichern, dass Sie die folgenden Informationen "
-"haben:"
+"fortfahren, sollten Sie sich versichern, dass Sie die folgenden "
+"Informationen haben:"
 
 #. Type: boolean
 #. Description
@@ -137,8 +137,8 @@ msgstr "Passwort des Authentifizierungsservers:"
 #: ../cinder-common.templates:6001
 msgid "Please specify the password to use with the authentication server."
 msgstr ""
-"Bitte geben Sie das Passwort an, das für den Authentifizierungsserver benutzt "
-"wird."
+"Bitte geben Sie das Passwort an, das für den Authentifizierungsserver "
+"benutzt wird."
 
 #. Type: string
 #. Description
@@ -208,8 +208,8 @@ msgstr "Passwort für die Verbindung mit dem RabbitMQ-Server:"
 #: ../cinder-common.templates:10001
 msgid "Please specify the password used to connect to the RabbitMQ server."
 msgstr ""
-"Bitte geben Sie das Passwort ein, das Sie zum Verbinden mit dem "
-"RabbitMQ-Server verwenden."
+"Bitte geben Sie das Passwort ein, das Sie zum Verbinden mit dem RabbitMQ-"
+"Server verwenden."
 
 #. Type: boolean
 #. Description
@@ -257,31 +257,48 @@ msgstr ""
 "Keystone kontaktieren kann, um den Cinder-Dienst und den Endpunkt zu "
 "erstellen."
 
-#. Type: password
+#. Type: string
 #. Description
 #: ../cinder-api.templates:4001
-msgid "Keystone authentication token:"
+#, fuzzy
+#| msgid "Keystone authentication token:"
+msgid "Keystone admin name:"
 msgstr "Keystone-Authentifizierungs-Token:"
 
+#. Type: string
+#. Description
+#. Type: string
+#. Description
 #. Type: password
 #. Description
-#: ../cinder-api.templates:4001
+#: ../cinder-api.templates:4001 ../cinder-api.templates:5001
+#: ../cinder-api.templates:6001
 msgid ""
-"To configure its endpoint in Keystone, cinder-api needs the Keystone "
-"authentication token."
+"To register the service endpoint, this package needs to know the Admin "
+"login, name, project name, and password to the Keystone server."
 msgstr ""
-"Cinder-API benötigt das Keystone-Authentifizierungs-Token, um seinen Endpunkt "
-"in Keystone zu konfigurieren."
 
 #. Type: string
 #. Description
 #: ../cinder-api.templates:5001
+msgid "Keystone admin project name:"
+msgstr ""
+
+#. Type: password
+#. Description
+#: ../cinder-api.templates:6001
+msgid "Keystone admin password:"
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../cinder-api.templates:7001
 msgid "Cinder endpoint IP address:"
 msgstr "IP-Adresse des Cinder-Endpunkts:"
 
 #. Type: string
 #. Description
-#: ../cinder-api.templates:5001
+#: ../cinder-api.templates:7001
 msgid "Please enter the IP address that will be used to contact Cinder."
 msgstr ""
 "Bitte geben Sie die IP-Adresse ein, die zum Kontaktieren von Cinder benutzt "
@@ -289,7 +306,7 @@ msgstr ""
 
 #. Type: string
 #. Description
-#: ../cinder-api.templates:5001
+#: ../cinder-api.templates:7001
 msgid ""
 "This IP address should be accessible from the clients that will use this "
 "service, so if you are installing a public cloud, this should be a public IP "
@@ -301,13 +318,13 @@ msgstr ""
 
 #. Type: string
 #. Description
-#: ../cinder-api.templates:6001
+#: ../cinder-api.templates:8001
 msgid "Name of the region to register:"
 msgstr "Name der Region, die registriert wird:"
 
 #. Type: string
 #. Description
-#: ../cinder-api.templates:6001
+#: ../cinder-api.templates:8001
 msgid ""
 "OpenStack supports using availability zones, with each region representing a "
 "location. Please enter the zone that you wish to use when registering the "
@@ -316,3 +333,10 @@ msgstr ""
 "OpenStack unterstützt die Verwendung von Verfügbarkeitszonen, bei der jede "
 "Region einen Ort repräsentiert. Bitte geben Sie die Zone, die Sie benutzen "
 "möchten, bei der Registrierung des Endpunkts an."
+
+#~ msgid ""
+#~ "To configure its endpoint in Keystone, cinder-api needs the Keystone "
+#~ "authentication token."
+#~ msgstr ""
+#~ "Cinder-API benötigt das Keystone-Authentifizierungs-Token, um seinen "
+#~ "Endpunkt in Keystone zu konfigurieren."
index 02cd71194306c6088bdb20f1faf710da221fe0f7..41c389710a320c19ae0e1cc4f872a7fb0e3d730d 100644 (file)
@@ -28,7 +28,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: cinder\n"
 "Report-Msgid-Bugs-To: cinder@packages.debian.org\n"
-"POT-Creation-Date: 2013-12-19 16:02+0800\n"
+"POT-Creation-Date: 2016-03-29 12:24+0000\n"
 "PO-Revision-Date: 2013-12-08 21:31-0300\n"
 "Last-Translator: Matías Bellone <matiasbellone+debian@gmail.com>\n"
 "Language-Team: Debian l10n Spanish <debian-l10n-spanish@lists.debian.org>\n"
@@ -273,37 +273,54 @@ msgstr ""
 "contactar con Keystone para realizar el servicio Cinder y crear el punto "
 "final."
 
-#. Type: password
+#. Type: string
 #. Description
 #: ../cinder-api.templates:4001
-msgid "Keystone authentication token:"
+#, fuzzy
+#| msgid "Keystone authentication token:"
+msgid "Keystone admin name:"
 msgstr "Token de autenticación de Keystone:"
 
+#. Type: string
+#. Description
+#. Type: string
+#. Description
 #. Type: password
 #. Description
-#: ../cinder-api.templates:4001
+#: ../cinder-api.templates:4001 ../cinder-api.templates:5001
+#: ../cinder-api.templates:6001
 msgid ""
-"To configure its endpoint in Keystone, cinder-api needs the Keystone "
-"authentication token."
+"To register the service endpoint, this package needs to know the Admin "
+"login, name, project name, and password to the Keystone server."
 msgstr ""
-"Para configurar su punto final en Keystone, cinder-api necesita el token de "
-"autenticación de Keystone."
 
 #. Type: string
 #. Description
 #: ../cinder-api.templates:5001
+msgid "Keystone admin project name:"
+msgstr ""
+
+#. Type: password
+#. Description
+#: ../cinder-api.templates:6001
+msgid "Keystone admin password:"
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../cinder-api.templates:7001
 msgid "Cinder endpoint IP address:"
 msgstr "Dirección IP del punto final de Cinder:"
 
 #. Type: string
 #. Description
-#: ../cinder-api.templates:5001
+#: ../cinder-api.templates:7001
 msgid "Please enter the IP address that will be used to contact Cinder."
 msgstr "Introduzca la dirección IP que se utilizará para contactar con Cinder."
 
 #. Type: string
 #. Description
-#: ../cinder-api.templates:5001
+#: ../cinder-api.templates:7001
 msgid ""
 "This IP address should be accessible from the clients that will use this "
 "service, so if you are installing a public cloud, this should be a public IP "
@@ -315,13 +332,13 @@ msgstr ""
 
 #. Type: string
 #. Description
-#: ../cinder-api.templates:6001
+#: ../cinder-api.templates:8001
 msgid "Name of the region to register:"
 msgstr "Nombre de la región a registrar:"
 
 #. Type: string
 #. Description
-#: ../cinder-api.templates:6001
+#: ../cinder-api.templates:8001
 msgid ""
 "OpenStack supports using availability zones, with each region representing a "
 "location. Please enter the zone that you wish to use when registering the "
@@ -331,6 +348,13 @@ msgstr ""
 "representa una ubicación. Introduzca la zona que desea utilizar cuando "
 "registre el punto final."
 
+#~ msgid ""
+#~ "To configure its endpoint in Keystone, cinder-api needs the Keystone "
+#~ "authentication token."
+#~ msgstr ""
+#~ "Para configurar su punto final en Keystone, cinder-api necesita el token "
+#~ "de autenticación de Keystone."
+
 #~ msgid "Start Cinder services at boot?"
 #~ msgstr "¿Desea iniciar los servicios de Cinder en el arranque del sistema?"
 
index a21638e25e3144c2d0273870720eb9887356a38b..703ff58a289d112c32024416c41f03bd69b05258 100644 (file)
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: cinder\n"
 "Report-Msgid-Bugs-To: cinder@packages.debian.org\n"
-"POT-Creation-Date: 2013-10-09 23:29+0800\n"
+"POT-Creation-Date: 2016-03-29 12:24+0000\n"
 "PO-Revision-Date: 2013-12-17 08:12+0100\n"
 "Last-Translator: Julien Patriarca <leatherface@debian.org>\n"
 "Language-Team: FRENCH <debian-l10n-french@lists.debian.org>\n"
@@ -20,28 +20,12 @@ msgstr ""
 #. Type: boolean
 #. Description
 #: ../cinder-common.templates:2001
-msgid "Start Cinder services at boot?"
-msgstr "Démarrer les services Cinder au lancement du système ?"
-
-#. Type: boolean
-#. Description
-#: ../cinder-common.templates:2001
-msgid ""
-"Please choose whether you want to start Cinder services when the machine is "
-"booted up."
-msgstr ""
-"Veuillez choisir si vous souhaitez lancer les services Cinder lors du "
-"démarrage de la machine."
-
-#. Type: boolean
-#. Description
-#: ../cinder-common.templates:3001
 msgid "Set up a database for Cinder?"
 msgstr "Installer une base de données pour Cinder ?"
 
 #. Type: boolean
 #. Description
-#: ../cinder-common.templates:3001
+#: ../cinder-common.templates:2001
 msgid ""
 "No database has been set up for Cinder to use. Before continuing, you should "
 "make sure you have the following information:"
@@ -51,7 +35,7 @@ msgstr ""
 
 #. Type: boolean
 #. Description
-#: ../cinder-common.templates:3001
+#: ../cinder-common.templates:2001
 msgid ""
 " * the type of database that you want to use;\n"
 " * the database server hostname (that server must allow TCP connections from "
@@ -67,7 +51,7 @@ msgstr ""
 
 #. Type: boolean
 #. Description
-#: ../cinder-common.templates:3001
+#: ../cinder-common.templates:2001
 msgid ""
 "If some of these requirements are missing, do not choose this option and run "
 "with regular SQLite support."
@@ -77,7 +61,7 @@ msgstr ""
 
 #. Type: boolean
 #. Description
-#: ../cinder-common.templates:3001
+#: ../cinder-common.templates:2001
 msgid ""
 "You can change this setting later on by running \"dpkg-reconfigure -plow "
 "cinder\"."
@@ -87,13 +71,13 @@ msgstr ""
 
 #. Type: string
 #. Description
-#: ../cinder-common.templates:4001
+#: ../cinder-common.templates:3001
 msgid "Authentication server hostname:"
 msgstr "Nom d'hôte du serveur d'authentification : "
 
 #. Type: string
 #. Description
-#: ../cinder-common.templates:4001
+#: ../cinder-common.templates:3001
 msgid ""
 "Please specify the hostname of the authentication server. Typically this is "
 "also the hostname of the OpenStack Identity Service (Keystone)."
@@ -110,7 +94,7 @@ msgstr ""
 #. You're advised to either keep "tenant" without translating it
 #. or keep it aside with your translation. Example for French:
 #. proprietaire ("tenant")
-#: ../cinder-common.templates:5001
+#: ../cinder-common.templates:4001
 msgid "Authentication server tenant name:"
 msgstr "Nom d'espace client du serveur d'authentification :"
 
@@ -123,20 +107,20 @@ msgstr "Nom d'espace client du serveur d'authentification :"
 #. You're advised to either keep "tenant" without translating it
 #. or keep it aside with your translation. Example for French:
 #. proprietaire ("tenant")
-#: ../cinder-common.templates:5001
+#: ../cinder-common.templates:4001
 msgid "Please specify the authentication server tenant name."
 msgstr ""
 "Veuillez indiquer le nom de l'espace client du serveur d’authentification."
 
 #. Type: string
 #. Description
-#: ../cinder-common.templates:6001
+#: ../cinder-common.templates:5001
 msgid "Authentication server username:"
 msgstr "Nom d'utilisateur du serveur d'authentification : "
 
 #. Type: string
 #. Description
-#: ../cinder-common.templates:6001
+#: ../cinder-common.templates:5001
 msgid "Please specify the username to use with the authentication server."
 msgstr ""
 "Veuillez indiquer le nom d'utilisateur à utiliser sur le serveur "
@@ -144,13 +128,13 @@ msgstr ""
 
 #. Type: password
 #. Description
-#: ../cinder-common.templates:7001
+#: ../cinder-common.templates:6001
 msgid "Authentication server password:"
 msgstr "Mot de passe du serveur d'authentification :"
 
 #. Type: password
 #. Description
-#: ../cinder-common.templates:7001
+#: ../cinder-common.templates:6001
 msgid "Please specify the password to use with the authentication server."
 msgstr ""
 "Veuillez indiquer le mot de passe à utiliser sur le serveur "
@@ -158,13 +142,13 @@ msgstr ""
 
 #. Type: string
 #. Description
-#: ../cinder-common.templates:8001
+#: ../cinder-common.templates:7001
 msgid "Cinder volume group:"
 msgstr "Groupe de volume Cinder : "
 
 #. Type: string
 #. Description
-#: ../cinder-common.templates:8001
+#: ../cinder-common.templates:7001
 msgid ""
 "Please specify the name of the LVM volume group on which Cinder will create "
 "partitions."
@@ -174,7 +158,7 @@ msgstr ""
 
 #. Type: string
 #. Description
-#: ../cinder-common.templates:9001
+#: ../cinder-common.templates:8001
 msgid "IP address of your RabbitMQ host:"
 msgstr "Adresse IP de votre hôte RabbitMQ :"
 
@@ -184,8 +168,8 @@ msgstr "Adresse IP de votre hôte RabbitMQ :"
 #. Description
 #. Type: password
 #. Description
-#: ../cinder-common.templates:9001 ../cinder-common.templates:10001
-#: ../cinder-common.templates:11001
+#: ../cinder-common.templates:8001 ../cinder-common.templates:9001
+#: ../cinder-common.templates:10001
 msgid ""
 "In order to interoperate with other components of OpenStack, this package "
 "needs to connect to a central RabbitMQ server."
@@ -195,21 +179,19 @@ msgstr ""
 
 #. Type: string
 #. Description
-#: ../cinder-common.templates:9001
-#| msgid "Please specify the password to use with the authentication server."
+#: ../cinder-common.templates:8001
 msgid "Please specify the IP address of that server."
 msgstr "Veuillez indiquer l'adresse IP de ce serveur."
 
 #. Type: string
 #. Description
-#: ../cinder-common.templates:10001
+#: ../cinder-common.templates:9001
 msgid "Username for connection to the RabbitMQ server:"
 msgstr "Nom d'utilisateur pour la connexion au serveur RabbitMQ :"
 
 #. Type: string
 #. Description
-#: ../cinder-common.templates:10001
-#| msgid "Please specify the username to use with the authentication server."
+#: ../cinder-common.templates:9001
 msgid "Please specify the username used to connect to the RabbitMQ server."
 msgstr ""
 "Veuillez indiquer le nom d'utilisateur à utiliser pour se connecter au "
@@ -217,14 +199,13 @@ msgstr ""
 
 #. Type: password
 #. Description
-#: ../cinder-common.templates:11001
+#: ../cinder-common.templates:10001
 msgid "Password for connection to the RabbitMQ server:"
 msgstr "Mot de passe pour la connexion au serveur RabbitMQ :"
 
 #. Type: password
 #. Description
-#: ../cinder-common.templates:11001
-#| msgid "Please specify the password to use with the authentication server."
+#: ../cinder-common.templates:10001
 msgid "Please specify the password used to connect to the RabbitMQ server."
 msgstr ""
 "Veuillez indiquer le mot de passe à utiliser pour se connecter au serveur "
@@ -275,38 +256,55 @@ msgstr ""
 "puisse contacter Keystone pour établir le service Cinder et créer le point "
 "d'accès."
 
-#. Type: password
+#. Type: string
 #. Description
 #: ../cinder-api.templates:4001
-msgid "Keystone authentication token:"
+#, fuzzy
+#| msgid "Keystone authentication token:"
+msgid "Keystone admin name:"
 msgstr "Jeton d'authentification Keystone : "
 
+#. Type: string
+#. Description
+#. Type: string
+#. Description
 #. Type: password
 #. Description
-#: ../cinder-api.templates:4001
+#: ../cinder-api.templates:4001 ../cinder-api.templates:5001
+#: ../cinder-api.templates:6001
 msgid ""
-"To configure its endpoint in Keystone, cinder-api needs the Keystone "
-"authentication token."
+"To register the service endpoint, this package needs to know the Admin "
+"login, name, project name, and password to the Keystone server."
 msgstr ""
-"Pour configurer son point d'accès dans Keystone, l'api de Cinder a besoin du "
-"jeton d'authentification Keystone."
 
 #. Type: string
 #. Description
 #: ../cinder-api.templates:5001
+msgid "Keystone admin project name:"
+msgstr ""
+
+#. Type: password
+#. Description
+#: ../cinder-api.templates:6001
+msgid "Keystone admin password:"
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../cinder-api.templates:7001
 msgid "Cinder endpoint IP address:"
 msgstr "Adresse IP du point d'accès Cinder : "
 
 #. Type: string
 #. Description
-#: ../cinder-api.templates:5001
+#: ../cinder-api.templates:7001
 msgid "Please enter the IP address that will be used to contact Cinder."
 msgstr ""
 "Veuillez indiquer l'adresse IP qui sera utilisée pour contacter Cinder."
 
 #. Type: string
 #. Description
-#: ../cinder-api.templates:5001
+#: ../cinder-api.templates:7001
 msgid ""
 "This IP address should be accessible from the clients that will use this "
 "service, so if you are installing a public cloud, this should be a public IP "
@@ -318,13 +316,13 @@ msgstr ""
 
 #. Type: string
 #. Description
-#: ../cinder-api.templates:6001
+#: ../cinder-api.templates:8001
 msgid "Name of the region to register:"
 msgstr "Nom de la région à enregistrer :"
 
 #. Type: string
 #. Description
-#: ../cinder-api.templates:6001
+#: ../cinder-api.templates:8001
 msgid ""
 "OpenStack supports using availability zones, with each region representing a "
 "location. Please enter the zone that you wish to use when registering the "
@@ -333,10 +331,3 @@ msgstr ""
 "OpenStack prend en charge l'utilisation de zones disponibles, avec chaque "
 "région représentant un lieu. Veuillez entrer une zone que vous souhaitez "
 "utiliser lors de l'enregistrement d'un point d'accès."
-
-#~ msgid ""
-#~ "If you don't choose this option, no database will be set up and Cinder "
-#~ "will use regular SQLite support."
-#~ msgstr ""
-#~ "Si vous ne choisissez pas cette option, aucune base de données ne sera "
-#~ "installée et Cinder utilisera le support SQLite normal."
index 489d2887f116deccd1802c42653062699ea829ac..3d231970997ffd083c2f2e051368c620569eeace 100644 (file)
@@ -6,7 +6,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: cinder\n"
 "Report-Msgid-Bugs-To: cinder@packages.debian.org\n"
-"POT-Creation-Date: 2013-12-19 16:02+0800\n"
+"POT-Creation-Date: 2016-03-29 12:24+0000\n"
 "PO-Revision-Date: 2014-04-06 15:15+0200\n"
 "Last-Translator: Beatrice Torracca <beatricet@libero.it>\n"
 "Language-Team: Italian <debian-l10n-italian@lists.debian.org>\n"
@@ -176,7 +176,6 @@ msgstr ""
 #. Type: string
 #. Description
 #: ../cinder-common.templates:8001
-#| msgid "Please enter the IP address that will be used to contact Cinder."
 msgid "Please specify the IP address of that server."
 msgstr "Inserire l'indirizzo IP di tale server."
 
@@ -190,7 +189,8 @@ msgstr "Nome utente per la connessione al server RabbitMQ:"
 #. Description
 #: ../cinder-common.templates:9001
 msgid "Please specify the username used to connect to the RabbitMQ server."
-msgstr "Specificare il nome utente da usare per connettersi al server RabbitMQ."
+msgstr ""
+"Specificare il nome utente da usare per connettersi al server RabbitMQ."
 
 #. Type: password
 #. Description
@@ -250,31 +250,48 @@ msgstr ""
 "possa contattare Keystone per effettuare la creazione del servizio e del "
 "punto terminale Cinder."
 
-#. Type: password
+#. Type: string
 #. Description
 #: ../cinder-api.templates:4001
-msgid "Keystone authentication token:"
+#, fuzzy
+#| msgid "Keystone authentication token:"
+msgid "Keystone admin name:"
 msgstr "Token di autenticazione Keystone:"
 
+#. Type: string
+#. Description
+#. Type: string
+#. Description
 #. Type: password
 #. Description
-#: ../cinder-api.templates:4001
+#: ../cinder-api.templates:4001 ../cinder-api.templates:5001
+#: ../cinder-api.templates:6001
 msgid ""
-"To configure its endpoint in Keystone, cinder-api needs the Keystone "
-"authentication token."
+"To register the service endpoint, this package needs to know the Admin "
+"login, name, project name, and password to the Keystone server."
 msgstr ""
-"Per configurare il proprio punto terminale in Keystone, cinder-api ha "
-"bisogno del token di autenticazione Keystone."
 
 #. Type: string
 #. Description
 #: ../cinder-api.templates:5001
+msgid "Keystone admin project name:"
+msgstr ""
+
+#. Type: password
+#. Description
+#: ../cinder-api.templates:6001
+msgid "Keystone admin password:"
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../cinder-api.templates:7001
 msgid "Cinder endpoint IP address:"
 msgstr "Indirizzo IP del punto terminale Cinder:"
 
 #. Type: string
 #. Description
-#: ../cinder-api.templates:5001
+#: ../cinder-api.templates:7001
 msgid "Please enter the IP address that will be used to contact Cinder."
 msgstr ""
 "Inserire l'indirizzo IP che verrà usato per contattare Cinder (es.: "
@@ -282,7 +299,7 @@ msgstr ""
 
 #. Type: string
 #. Description
-#: ../cinder-api.templates:5001
+#: ../cinder-api.templates:7001
 msgid ""
 "This IP address should be accessible from the clients that will use this "
 "service, so if you are installing a public cloud, this should be a public IP "
@@ -294,13 +311,13 @@ msgstr ""
 
 #. Type: string
 #. Description
-#: ../cinder-api.templates:6001
+#: ../cinder-api.templates:8001
 msgid "Name of the region to register:"
 msgstr "Nome della regione da registrare:"
 
 #. Type: string
 #. Description
-#: ../cinder-api.templates:6001
+#: ../cinder-api.templates:8001
 msgid ""
 "OpenStack supports using availability zones, with each region representing a "
 "location. Please enter the zone that you wish to use when registering the "
@@ -310,6 +327,13 @@ msgstr ""
 "regione che rappresenta una posizione. Inserire la zona che si desidera "
 "usare durante la registrazione del punto terminale."
 
+#~ msgid ""
+#~ "To configure its endpoint in Keystone, cinder-api needs the Keystone "
+#~ "authentication token."
+#~ msgstr ""
+#~ "Per configurare il proprio punto terminale in Keystone, cinder-api ha "
+#~ "bisogno del token di autenticazione Keystone."
+
 #~ msgid "Start Cinder services at boot?"
 #~ msgstr "Far partire i servizi cinder all'avvio?"
 
index 42d701083e6003a08acf575b84a7bda88768a08c..8d0e78dd92a4b005b171a9b1b5004026a03961a6 100644 (file)
@@ -1,26 +1,29 @@
-# SOME DESCRIPTIVE TITLE.\r
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER\r
-# This file is distributed under the same license as the cinder package.\r
-# victory <victory.deb@gmail.com>, 2013.\r
-# \r
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the cinder package.
+# victory <victory.deb@gmail.com>, 2013.
+# Takuma Yamada <tyamada@takumayamada.com>, 2016.
+#
 msgid ""
 msgstr ""
 "Project-Id-Version: cinder\n"
 "Report-Msgid-Bugs-To: cinder@packages.debian.org\n"
-"POT-Creation-Date: 2013-12-19 16:02+0800\n"
-"PO-Revision-Date: 2013-09-02 14:02+0900\n"
-"Last-Translator: victory <victory.deb@gmail.com>\n"
+"POT-Creation-Date: 2016-03-29 12:24+0000\n"
+"PO-Revision-Date: 2016-04-07 13:00+0900\n"
+"Last-Translator: Takuma Yamada <tyamada@takumayamada.com>\n"
 "Language-Team: Japanese <debian-japanese@lists.debian.org>\n"
 "Language: ja\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+"X-Generator: Gtranslator 2.91.6\n"
 
 #. Type: boolean
 #. Description
 #: ../cinder-common.templates:2001
 msgid "Set up a database for Cinder?"
-msgstr "Cinder 用のデータベースを用意しますか?"
+msgstr "Cinder 用のデータベースを設定しますか?"
 
 #. Type: boolean
 #. Description
@@ -29,8 +32,8 @@ msgid ""
 "No database has been set up for Cinder to use. Before continuing, you should "
 "make sure you have the following information:"
 msgstr ""
-"Cinder で利用するデータベースが用意されていません。続ける前に以下の情報が揃っ"
-"ていることを確認してください:"
+"Cinder で使用するために設定されたデータベースがありません。続行する前に、以下"
+"ã\81®æ\83\85å ±ã\81\8cæ\8f\83ã\81£ã\81¦ã\81\84ã\82\8bã\81\93ã\81¨ã\82\92確èª\8dã\81\97ã\81¦ã\81\8fã\81 ã\81\95ã\81\84:"
 
 #. Type: boolean
 #. Description
@@ -42,10 +45,10 @@ msgid ""
 "   machine);\n"
 " * a username and password to access the database."
 msgstr ""
-" - 使いたいデータベースの種類\n"
-" - データベースサーバのホスト名 (このサーバはこのマシンからの\n"
-"   TCP 接続を許可しなければなりません)\n"
-" - データベースにアクセスするためのユーザ名とパスワード"
+" * 使用するデータベースの種類\n"
+" * データベースサーバのホスト名 (そのサーバは、このマシンからの TCP 接続を\n"
+"   許可する必要があります)\n"
+" * データベースにアクセスするためのユーザ名とパスワード"
 
 #. Type: boolean
 #. Description
@@ -54,8 +57,8 @@ msgid ""
 "If some of these requirements are missing, do not choose this option and run "
 "with regular SQLite support."
 msgstr ""
-"必要な情報が欠けている場合このオプションを却下して標準の SQLite を利用しま"
-"ã\81\99。"
+"これらの要件が欠落している場合は、このオプションを選択しないでください。そし"
+"ã\81¦ã\80\81æ¨\99æº\96 SQLite ã\82µã\83\9dã\83¼ã\83\88ã\81§å®\9fè¡\8cã\81\97ã\81¦ã\81\8fã\81 ã\81\95ã\81\84。"
 
 #. Type: boolean
 #. Description
@@ -64,7 +67,7 @@ msgid ""
 "You can change this setting later on by running \"dpkg-reconfigure -plow "
 "cinder\"."
 msgstr ""
-"この設定は後で「dpkg-reconfigure -plow cinder」を実行することにより変更できま"
+"この設定は、後で \"dpkg-reconfigure -plow cinder\" を実行することで変更できま"
 "す。"
 
 #. Type: string
@@ -80,8 +83,8 @@ msgid ""
 "Please specify the hostname of the authentication server. Typically this is "
 "also the hostname of the OpenStack Identity Service (Keystone)."
 msgstr ""
-"認証サーバのホスト名を指定してください。これは通常 OpenStack Identity "
-"Service (Keystone) ã\81®ã\83\9bã\82¹ã\83\88å\90\8dã\81«ã\82\82ã\81ªã\82\8aã\81¾す。"
+"認証サーバのホスト名を指定してください。通常これは OpenStack Identity "
+"Service (Keystone) ã\81®ã\83\9bã\82¹ã\83\88å\90\8dã\81¨å\90\8cã\81\98ã\81§す。"
 
 #. Type: string
 #. Description
@@ -94,7 +97,7 @@ msgstr ""
 #. proprietaire ("tenant")
 #: ../cinder-common.templates:4001
 msgid "Authentication server tenant name:"
-msgstr "認証サーバの管理用アカウント (tenant) 名"
+msgstr "認証サーバのテナント (tenant) 名:"
 
 #. Type: string
 #. Description
@@ -107,7 +110,7 @@ msgstr "認証サーバの管理用アカウント (tenant) 名"
 #. proprietaire ("tenant")
 #: ../cinder-common.templates:4001
 msgid "Please specify the authentication server tenant name."
-msgstr "認証サーバの管理用アカウント (tenant) 名を指定してください。"
+msgstr "認証サーバのテナント (tenant) 名を指定してください。"
 
 #. Type: string
 #. Description
@@ -119,7 +122,7 @@ msgstr "認証サーバのユーザ名:"
 #. Description
 #: ../cinder-common.templates:5001
 msgid "Please specify the username to use with the authentication server."
-msgstr "認証サーバで用するユーザ名を指定してください。"
+msgstr "認証サーバで使用するユーザ名を指定してください。"
 
 #. Type: password
 #. Description
@@ -131,7 +134,7 @@ msgstr "認証サーバのパスワード:"
 #. Description
 #: ../cinder-common.templates:6001
 msgid "Please specify the password to use with the authentication server."
-msgstr "認証サーバで用するパスワードを指定してください。"
+msgstr "認証サーバで使用するパスワードを指定してください。"
 
 #. Type: string
 #. Description
@@ -146,14 +149,14 @@ msgid ""
 "Please specify the name of the LVM volume group on which Cinder will create "
 "partitions."
 msgstr ""
-"Cinder ã\81«ã\83\91ã\83¼ã\83\86ã\82£ã\82·ã\83§ã\83³ã\82\92ä½\9cæ\88\90ã\81\95ã\81\9bã\82\8b LVM ã\83\9cã\83ªã\83¥ã\83¼ã\83 ã\82°ã\83«ã\83¼ã\83\97ã\81®å\90\8då\89\8dã\82\92æ\8c\87å®\9aã\81\97ã\81¦ã\81\8f"
-"ã\81 ã\81\95ã\81\84ã\80\82"
+"Cinder ã\81\8cã\83\91ã\83¼ã\83\86ã\82£ã\82·ã\83§ã\83³ã\82\92ä½\9cæ\88\90ã\81\99ã\82\8b LVM ã\83\9cã\83ªã\83¥ã\83¼ã\83 ã\82°ã\83«ã\83¼ã\83\97ã\81®å\90\8då\89\8dã\82\92æ\8c\87å®\9aã\81\97ã\81¦ã\81\8fã\81 "
+"さい。"
 
 #. Type: string
 #. Description
 #: ../cinder-common.templates:8001
 msgid "IP address of your RabbitMQ host:"
-msgstr ""
+msgstr "RabbitMQ ホストの IP アドレス:"
 
 #. Type: string
 #. Description
@@ -167,48 +170,44 @@ msgid ""
 "In order to interoperate with other components of OpenStack, this package "
 "needs to connect to a central RabbitMQ server."
 msgstr ""
+"OpenStack のほかのコンポーネントと相互運用するためには、このパッケージは中央 "
+"RabbitMQ サーバに接続する必要があります。"
 
 #. Type: string
 #. Description
 #: ../cinder-common.templates:8001
-#, fuzzy
-#| msgid "Please specify the password to use with the authentication server."
 msgid "Please specify the IP address of that server."
-msgstr "認証サーバで利用するパスワードを指定してください。"
+msgstr "そのサーバの IP アドレスを指定してください。"
 
 #. Type: string
 #. Description
 #: ../cinder-common.templates:9001
 msgid "Username for connection to the RabbitMQ server:"
-msgstr ""
+msgstr "RabbitMQ サーバ接続用のユーザ名:"
 
 #. Type: string
 #. Description
 #: ../cinder-common.templates:9001
-#, fuzzy
-#| msgid "Please specify the username to use with the authentication server."
 msgid "Please specify the username used to connect to the RabbitMQ server."
-msgstr "認証サーバで利用するユーザ名を指定してください。"
+msgstr "RabbitMQ サーバ接続用のユーザ名を指定してください。"
 
 #. Type: password
 #. Description
 #: ../cinder-common.templates:10001
 msgid "Password for connection to the RabbitMQ server:"
-msgstr ""
+msgstr "RabbitMQ サーバ接続用のパスワード:"
 
 #. Type: password
 #. Description
 #: ../cinder-common.templates:10001
-#, fuzzy
-#| msgid "Please specify the password to use with the authentication server."
 msgid "Please specify the password used to connect to the RabbitMQ server."
-msgstr "認証サーバで利用するパスワードを指定してください。"
+msgstr "RabbitMQ サーバの接続に使用するパスワードを指定してください。"
 
 #. Type: boolean
 #. Description
 #: ../cinder-api.templates:2001
 msgid "Register Cinder in the Keystone endpoint catalog?"
-msgstr "Cinder を Keystone の端末リストに登録しますか?"
+msgstr "Cinder を Keystone のエンドポイントカタログに登録しますか?"
 
 #. Type: boolean
 #. Description
@@ -218,9 +217,9 @@ msgid ""
 "accessible. This is done using \"keystone service-create\" and \"keystone "
 "endpoint-create\". This can be done automatically now."
 msgstr ""
-"OpenStack のサービスごと (API ごと) に、アクセスできるようにするため登録すべ"
-"ã\81\8dã\81§ã\81\99ã\80\82ã\80\8ckeystone service-createã\80\8dã\81¨ã\80\8ckeystone endpoint-createã\80\8dã\82\92使ã\81£ã\81¦ç\99»é\8c²"
-"することができます。ここで自動的に行うことができます。"
+"各 OpenStack サービス (各 API) は、アクセス可能にするために登録する必要があり"
+"ã\81¾ã\81\99ã\80\82\"keystone service-create\" ã\81¨ \"keystone endpoint-create\" ã\82\92使ã\81£ã\81¦ç\99»"
+"することができます。ここで自動的に行うことができます。"
 
 #. Type: boolean
 #. Description
@@ -229,8 +228,8 @@ msgid ""
 "Note that you will need to have an up and running Keystone server on which "
 "to connect using the Keystone authentication token."
 msgstr ""
-"Keystone 認証文字列を使って接続する先の Keystone サーバが必要なことに注意して"
-"ください。"
+"Keystone 認証トークンを使って接続するには、Keystone サーバの起動および実行が"
+"必要になりますので注意してください。"
 
 #. Type: string
 #. Description
@@ -245,70 +244,83 @@ msgid ""
 "Please enter the IP address of the Keystone server, so that cinder-api can "
 "contact Keystone to do the Cinder service and endpoint creation."
 msgstr ""
-"Keystone サーバの IP アドレスを入力してください。それにより cinder-api は "
-"Keystone と通信し、Cinder サービスや端末の作成ができるようになります。"
+"Keystone サーバの IP アドレスを入力してください。それにより ceilometer-api "
+"は Keystone と通信し、Ceilometer サービスやエンドポイントの作成ができるように"
+"なります。"
 
-#. Type: password
+#. Type: string
 #. Description
 #: ../cinder-api.templates:4001
-msgid "Keystone authentication token:"
-msgstr "Keystone 認証文字列:"
+#| msgid "Keystone authentication token:"
+msgid "Keystone admin name:"
+msgstr "Keystone 管理者名:"
 
+#. Type: string
+#. Description
+#. Type: string
+#. Description
 #. Type: password
 #. Description
-#: ../cinder-api.templates:4001
+#: ../cinder-api.templates:4001 ../cinder-api.templates:5001
+#: ../cinder-api.templates:6001
 msgid ""
-"To configure its endpoint in Keystone, cinder-api needs the Keystone "
-"authentication token."
+"To register the service endpoint, this package needs to know the Admin "
+"login, name, project name, and password to the Keystone server."
 msgstr ""
-"Keystone で端末を設定するには、cinder-api は Keystone 認証文字列を必要としま"
-"す。"
+"サービスのエンドポイントを登録するには、このパッケージが Keystone サーバへの"
+"管理者ログイン、名前、プロジェクト名、およびパスワードを知っている必要があり"
+"ます。"
 
 #. Type: string
 #. Description
 #: ../cinder-api.templates:5001
+msgid "Keystone admin project name:"
+msgstr "Keystone 管理プロジェクト名:"
+
+#. Type: password
+#. Description
+#: ../cinder-api.templates:6001
+msgid "Keystone admin password:"
+msgstr "Keystone 管理者パスワード:"
+
+#. Type: string
+#. Description
+#: ../cinder-api.templates:7001
 msgid "Cinder endpoint IP address:"
-msgstr "Cinder 端末の IP アドレス:"
+msgstr "Cinder エンドポイントの IP アドレス:"
 
 #. Type: string
 #. Description
-#: ../cinder-api.templates:5001
+#: ../cinder-api.templates:7001
 msgid "Please enter the IP address that will be used to contact Cinder."
-msgstr "Cinder への通信に用する IP アドレスを入力してください。"
+msgstr "Cinder への通信に使用する IP アドレスを入力してください。"
 
 #. Type: string
 #. Description
-#: ../cinder-api.templates:5001
+#: ../cinder-api.templates:7001
 msgid ""
 "This IP address should be accessible from the clients that will use this "
 "service, so if you are installing a public cloud, this should be a public IP "
 "address."
 msgstr ""
-"ã\81\93ã\81® IP ã\82¢ã\83\89ã\83¬ã\82¹ã\81¯ã\81\93ã\81®ã\82µã\83¼ã\83\93ã\82¹ã\82\92å\88©ç\94¨ã\81\99ã\82\8bã\82¯ã\83©ã\82¤ã\82¢ã\83³ã\83\88ã\81\8bã\82\89ã\82¢ã\82¯ã\82»ã\82¹ã\81§ã\81\8dã\81ªã\81\84ã\81¨ã\81\84"
-"ã\81\91ã\81ªã\81\84ã\81®ã\81§ã\80\81ã\83\91ã\83\96ã\83ªã\83\83ã\82¯ã\82¯ã\83©ã\82¦ã\83\89ã\82\92ã\82¤ã\83³ã\82¹ã\83\88ã\83¼ã\83«ã\81\97ã\81¦ã\81\84ã\82\8bå ´å\90\88ã\80\81ã\81\93ã\82\8cã\81¯å\85¬é\96\8b IP ã\82¢ã\83\89"
-"レスを使うようにしてください。"
+"ã\81\93ã\81® IP ã\82¢ã\83\89ã\83¬ã\82¹ã\81¯ã\80\81ã\81\93ã\81®ã\82µã\83¼ã\83\93ã\82¹ã\82\92å\88©ç\94¨ã\81\99ã\82\8bã\82¯ã\83©ã\82¤ã\82¢ã\83³ã\83\88ã\81\8bã\82\89ã\82¢ã\82¯ã\82»ã\82¹å\8f¯è\83½ã\81§ã\81ªã\81\91"
+"ã\82\8cã\81°ã\81ªã\82\8aã\81¾ã\81\9bã\82\93ã\80\82ã\83\91ã\83\96ã\83ªã\83\83ã\82¯ã\82¯ã\83©ã\82¦ã\83\89ã\82\92ã\82¤ã\83³ã\82¹ã\83\88ã\83¼ã\83«ã\81\97ã\81¦ã\81\84ã\82\8bå ´å\90\88ã\81¯ã\80\81ã\83\91ã\83\96ã\83ªã\83\83ã\82¯ "
+"IP アドレスにする必要があります。"
 
 #. Type: string
 #. Description
-#: ../cinder-api.templates:6001
+#: ../cinder-api.templates:8001
 msgid "Name of the region to register:"
-msgstr "登録する領域の名前:"
+msgstr "登録するリージョンの名前:"
 
 #. Type: string
 #. Description
-#: ../cinder-api.templates:6001
+#: ../cinder-api.templates:8001
 msgid ""
 "OpenStack supports using availability zones, with each region representing a "
 "location. Please enter the zone that you wish to use when registering the "
 "endpoint."
 msgstr ""
-"OpenStack は位置を示す各領域による利用可能区分を利用することができます。端末"
-"の登録時に利用したい区分を入力してください。"
-
-#~ msgid "Start Cinder services at boot?"
-#~ msgstr "ブート時に Cinder サービスを開始しますか?"
-
-#~ msgid ""
-#~ "Please choose whether you want to start Cinder services when the machine "
-#~ "is booted up."
-#~ msgstr "マシン起動後に Cinder サービスを開始するかどうか選択してください。"
+"OpenStack は、場所を表すリージョン毎に、アベイラビリティーゾーンの使用をサ"
+"ポートします。エンドポイントを登録する際に、使用するゾーンを入力してくださ"
+"い。"
index b98a13082717ca20ae916568ef084d47af69b470..e0638efe0d6d2538dec280e22f1feec5b627ce2c 100644 (file)
@@ -1,14 +1,14 @@
 # Dutch translation of cinder debconf templates.
 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the cinder package.
-# Frans Spiesschaert <Frans.Spiesschaert@yucom.be>, 2014.
+# Frans Spiesschaert <Frans.Spiesschaert@yucom.be>, 2014, 2016.
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: cinder\n"
+"Project-Id-Version: cinder_2_8.0.0-2\n"
 "Report-Msgid-Bugs-To: cinder@packages.debian.org\n"
-"POT-Creation-Date: 2013-12-19 16:02+0800\n"
-"PO-Revision-Date: 2014-10-10 16:01+0200\n"
+"POT-Creation-Date: 2016-03-29 12:24+0000\n"
+"PO-Revision-Date: 2016-04-19 16:49+0200\n"
 "Last-Translator: Frans Spiesschaert <Frans.Spiesschaert@yucom.be>\n"
 "Language-Team: Debian Dutch l10n Team <debian-l10n-dutch@lists.debian.org>\n"
 "Language: nl\n"
@@ -16,6 +16,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Gtranslator 2.91.6\n"
 
 #. Type: boolean
 #. Description
@@ -30,8 +31,8 @@ msgid ""
 "No database has been set up for Cinder to use. Before continuing, you should "
 "make sure you have the following information:"
 msgstr ""
-"Er is geen database opgezet voor gebruik door Cinder. Voor u doorgaat moet u "
-"beschikken over de volgende informatie:"
+"Er werd geen database opgezet om door Cinder gebruikt te worden. Voor u "
+"doorgaat moet u beschikken over de volgende informatie:"
 
 #. Type: boolean
 #. Description
@@ -43,10 +44,11 @@ msgid ""
 "   machine);\n"
 " * a username and password to access the database."
 msgstr ""
-" * het type database dat u wenst te gebruiken;\n"
-" * de computernaam van de database-server (die server moet\n"
-"   TCP-verbindingen vanaf deze computer accepteren);\n"
-" * een gebruikersnaam en wachtwoord voor toegang tot de database."
+" * het soort database dat u wilt gebruiken;\n"
+" * de computernaam van de databaseserver (die server moet\n"
+"   TCP-verbindingen vanaf deze computer toestaan);\n"
+" * een gebruikersnaam en een wachtwoord om toegang te krijgen tot de "
+"database."
 
 #. Type: boolean
 #. Description
@@ -81,7 +83,7 @@ msgid ""
 "Please specify the hostname of the authentication server. Typically this is "
 "also the hostname of the OpenStack Identity Service (Keystone)."
 msgstr ""
-"Geef de computernaam van de authenticatieserver. Meestal is dit ook de "
+"Geef de computernaam van de authenticatieserver op. Meestal is dit ook de "
 "computernaam van de OpenStack Identiteitsdienst (Keystone)."
 
 #. Type: string
@@ -109,32 +111,33 @@ msgstr "Naam van de cliëntruimte (tenant) op de authenticatieserver:"
 #: ../cinder-common.templates:4001
 msgid "Please specify the authentication server tenant name."
 msgstr ""
-"Gelieve de naam te vermelden van de cliëntruimte (tenant) op de "
-"authenticatieserver."
+"Geef de naam op van de cliëntruimte (tenant) op de authenticatieserver."
 
 #. Type: string
 #. Description
 #: ../cinder-common.templates:5001
 msgid "Authentication server username:"
-msgstr "Gebruikersnaam voor de authenticatieserver:"
+msgstr "Gebruikersnaam op de authenticatieserver:"
 
 #. Type: string
 #. Description
 #: ../cinder-common.templates:5001
 msgid "Please specify the username to use with the authentication server."
-msgstr "Geef de gebruikersnaam op voor de authenticatieserver."
+msgstr ""
+"Geef de gebruikersnaam op die op de authenticatieserver gebruikt moet worden."
 
 #. Type: password
 #. Description
 #: ../cinder-common.templates:6001
 msgid "Authentication server password:"
-msgstr "Wachtwoord voor de authenticatieserver:"
+msgstr "Wachtwoord op de authenticatieserver:"
 
 #. Type: password
 #. Description
 #: ../cinder-common.templates:6001
 msgid "Please specify the password to use with the authentication server."
-msgstr "Geef het wachtwoord op voor de authenticatieserver."
+msgstr ""
+"Geef het wachtwoord op dat op de authenticatieserver gebruikt moet worden."
 
 #. Type: string
 #. Description
@@ -169,8 +172,8 @@ msgid ""
 "In order to interoperate with other components of OpenStack, this package "
 "needs to connect to a central RabbitMQ server."
 msgstr ""
-"Om te kunnen samenwerken met andere componenten van OpenStack, moet dit "
-"pakket verbinding kunnen maken met een centrale RabbitMQ-server."
+"Om met andere componenten van OpenStack samen te werken, moet dit pakket een "
+"verbinding maken met een centrale RabbitMQ-server."
 
 #. Type: string
 #. Description
@@ -189,8 +192,8 @@ msgstr "Gebruikersnaam voor de verbinding met de RabbitMQ-server:"
 #: ../cinder-common.templates:9001
 msgid "Please specify the username used to connect to the RabbitMQ server."
 msgstr ""
-"Geef de gebruikersnaam op die u nodig heeft om verbinding te maken met de "
-"RabbitMQ-server."
+"Geef de gebruikersnaam op waarmee verbinding gemaakt wordt met de RabbitMQ-"
+"server."
 
 #. Type: password
 #. Description
@@ -203,14 +206,14 @@ msgstr "Wachtwoord voor de verbinding met de RabbitMQ-server:"
 #: ../cinder-common.templates:10001
 msgid "Please specify the password used to connect to the RabbitMQ server."
 msgstr ""
-"Gelieve het wachtwoord te geven dat u nodig heeft om verbinding te maken met "
-"de RabbitMQ-server."
+"Geef het wachtwoord op dat gebruikt wordt om verbinding te maken met de "
+"RabbitMQ-server."
 
 #. Type: boolean
 #. Description
 #: ../cinder-api.templates:2001
 msgid "Register Cinder in the Keystone endpoint catalog?"
-msgstr "Cinder registreren in de catalogus van toegangspunten van Keystone?"
+msgstr "Cinder opnemen in de catalogus van Keystone-toegangspunten?"
 
 #. Type: boolean
 #. Description
@@ -220,9 +223,9 @@ msgid ""
 "accessible. This is done using \"keystone service-create\" and \"keystone "
 "endpoint-create\". This can be done automatically now."
 msgstr ""
-"Elke OpenStackdienst (elke API) moet geregistreerd worden om toegankelijk te "
-"zijn. Dit gebeurt aan de hand van \"keystone service-create\" en \"keystone "
-"endpoint-create\". Dit kan nu automatisch gedaan worden."
+"Elke dienst van OpenStack (elke API) moet geregistreerd staan om "
+"toegankelijk te zijn. Dit gebeurt met de opdrachten \"keystone service-create"
+"\" en \"keystone endpoint-create\". Dit kan nu automatisch uitgevoerd worden."
 
 #. Type: boolean
 #. Description
@@ -231,9 +234,8 @@ msgid ""
 "Note that you will need to have an up and running Keystone server on which "
 "to connect using the Keystone authentication token."
 msgstr ""
-"Merk op dat u hiervoor een volledig werkende Keystone-server nodig heeft, "
-"waarmee een verbinding gemaakt wordt met behulp van het authenticatiebewijs "
-"voor Keystone."
+"Merk op dat u een functionerende Keystone-server moet hebben, waarmee u "
+"verbinding kunt maken met behulp van het legitimatiebewijs voor Keystone."
 
 #. Type: string
 #. Description
@@ -248,66 +250,90 @@ msgid ""
 "Please enter the IP address of the Keystone server, so that cinder-api can "
 "contact Keystone to do the Cinder service and endpoint creation."
 msgstr ""
-"Gelieve het IP-adres van de Keystone-server op te geven, zodat cinder-api "
-"met Keystone kan verbinden om de Cinder-service en het toegangspunt aan te "
-"maken."
+"Geef het IP-adres van de Keystone-server op, zodat cinder-api Keystone kan "
+"contacteren om de Cinderdienst en het toegangspunt aan te maken."
 
-#. Type: password
+#. Type: string
 #. Description
 #: ../cinder-api.templates:4001
-msgid "Keystone authentication token:"
-msgstr "Authenticatiebewijs voor Keystone:"
+#| msgid "Keystone authentication token:"
+msgid "Keystone admin name:"
+msgstr "Naam van de beheerder voor Keystone:"
 
+#. Type: string
+#. Description
+#. Type: string
+#. Description
 #. Type: password
 #. Description
-#: ../cinder-api.templates:4001
+#: ../cinder-api.templates:4001 ../cinder-api.templates:5001
+#: ../cinder-api.templates:6001
 msgid ""
-"To configure its endpoint in Keystone, cinder-api needs the Keystone "
-"authentication token."
+"To register the service endpoint, this package needs to know the Admin "
+"login, name, project name, and password to the Keystone server."
 msgstr ""
-"Om zijn toegangspunt te kunnen aanmaken in Keystone, heeft cinder-api het "
-"authenticatiebewijs voor Keystone nodig."
+"Om het toegangspunt van de dienst te registreren moet dit pakket de "
+"inloggegevens voor de Keystone-server van de beheerder kennen, naam, "
+"projectnaam en wachtwoord."
 
 #. Type: string
 #. Description
 #: ../cinder-api.templates:5001
+msgid "Keystone admin project name:"
+msgstr "Naam van het project van de beheerder voor Keystone:"
+
+#. Type: password
+#. Description
+#: ../cinder-api.templates:6001
+msgid "Keystone admin password:"
+msgstr "Wachtwoord van de beheerder voor Keystone:"
+
+#. Type: string
+#. Description
+#: ../cinder-api.templates:7001
 msgid "Cinder endpoint IP address:"
-msgstr "IP-adres van het toegangspunt voor Cinder:"
+msgstr "IP-adres van het toegangspunt van Cinder:"
 
 #. Type: string
 #. Description
-#: ../cinder-api.templates:5001
+#: ../cinder-api.templates:7001
 msgid "Please enter the IP address that will be used to contact Cinder."
 msgstr ""
-"Gelieve het IP-adres in te voeren dat gebruikt zal worden om contact te "
-"maken met Cinder."
+"Geef het IP-adres op dat gebruikt zal worden voor het contact met Cinder."
 
 #. Type: string
 #. Description
-#: ../cinder-api.templates:5001
+#: ../cinder-api.templates:7001
 msgid ""
 "This IP address should be accessible from the clients that will use this "
 "service, so if you are installing a public cloud, this should be a public IP "
 "address."
 msgstr ""
-"Dit IP-adres moet bereikbaar zijn voor de clients die van deze service "
-"gebruik zullen maken. Indien u een openbare cloud installeert, moet dit dus "
-"een algemeen bereikbaar IP-adres zijn."
+"Dit IP-adres moet bereikbaar zijn voor de clients die deze dienst zullen "
+"gebruiken. Indien u een openbare cloud installeert, moet dit dus een "
+"algemeen bereikbaar IP-adres zijn."
 
 #. Type: string
 #. Description
-#: ../cinder-api.templates:6001
+#: ../cinder-api.templates:8001
 msgid "Name of the region to register:"
 msgstr "Naam van de registratieregio:"
 
 #. Type: string
 #. Description
-#: ../cinder-api.templates:6001
+#: ../cinder-api.templates:8001
 msgid ""
 "OpenStack supports using availability zones, with each region representing a "
 "location. Please enter the zone that you wish to use when registering the "
 "endpoint."
 msgstr ""
-"Openstack ondersteunt het gebruik van zones van beschikbaarheid, waarbij "
+"OpenStack ondersteunt het gebruik van zones van beschikbaarheid, waarbij "
 "elke regio een locatie vertegenwoordigt. Geef aan welke zone u wenst te "
 "gebruiken bij het registreren van het toegangspunt."
+
+#~ msgid ""
+#~ "To configure its endpoint in Keystone, cinder-api needs the Keystone "
+#~ "authentication token."
+#~ msgstr ""
+#~ "Om zijn toegangspunt te kunnen aanmaken in Keystone, heeft cinder-api het "
+#~ "authenticatiebewijs voor Keystone nodig."
index b0103e91a06acb44d321435271364e48dd2c1065..83ff2dff515a0dfd45023d85e83ebdfddb81894b 100644 (file)
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: cinder\n"
 "Report-Msgid-Bugs-To: cinder@packages.debian.org\n"
-"POT-Creation-Date: 2013-12-19 16:02+0800\n"
+"POT-Creation-Date: 2016-03-29 12:24+0000\n"
 "PO-Revision-Date: 2014-10-13 22:07+0100\n"
 "Last-Translator: Pedro Ribeiro <p.m42.ribeiro@gmail.com>\n"
 "Language-Team: Portuguese <traduz@debianpt.org>\n"
@@ -176,7 +176,6 @@ msgstr ""
 #. Type: string
 #. Description
 #: ../cinder-common.templates:8001
-#| msgid "Please enter the IP address that will be used to contact Cinder."
 msgid "Please specify the IP address of that server."
 msgstr "Indique por favor o endereço IP desse servidor."
 
@@ -250,37 +249,54 @@ msgstr ""
 "Indique o endereço IP do seu servidor Keystone, de modo a que o cinder-api "
 "possa contactar o Keystone para criar o serviço Cinder e o ponto de ligação."
 
-#. Type: password
+#. Type: string
 #. Description
 #: ../cinder-api.templates:4001
-msgid "Keystone authentication token:"
+#, fuzzy
+#| msgid "Keystone authentication token:"
+msgid "Keystone admin name:"
 msgstr "Sinal (token) de autenticação do Keystone:"
 
+#. Type: string
+#. Description
+#. Type: string
+#. Description
 #. Type: password
 #. Description
-#: ../cinder-api.templates:4001
+#: ../cinder-api.templates:4001 ../cinder-api.templates:5001
+#: ../cinder-api.templates:6001
 msgid ""
-"To configure its endpoint in Keystone, cinder-api needs the Keystone "
-"authentication token."
+"To register the service endpoint, this package needs to know the Admin "
+"login, name, project name, and password to the Keystone server."
 msgstr ""
-"Para configurar o seu ponto de ligação no Keystone, o cinder-api precisa do "
-"sinal de autenticação do Keystone."
 
 #. Type: string
 #. Description
 #: ../cinder-api.templates:5001
+msgid "Keystone admin project name:"
+msgstr ""
+
+#. Type: password
+#. Description
+#: ../cinder-api.templates:6001
+msgid "Keystone admin password:"
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../cinder-api.templates:7001
 msgid "Cinder endpoint IP address:"
 msgstr "Endereço IP do ponto de ligação Cinder:"
 
 #. Type: string
 #. Description
-#: ../cinder-api.templates:5001
+#: ../cinder-api.templates:7001
 msgid "Please enter the IP address that will be used to contact Cinder."
 msgstr "Indique o endereço IP que será usado para contactar com o Cinder."
 
 #. Type: string
 #. Description
-#: ../cinder-api.templates:5001
+#: ../cinder-api.templates:7001
 msgid ""
 "This IP address should be accessible from the clients that will use this "
 "service, so if you are installing a public cloud, this should be a public IP "
@@ -292,13 +308,13 @@ msgstr ""
 
 #. Type: string
 #. Description
-#: ../cinder-api.templates:6001
+#: ../cinder-api.templates:8001
 msgid "Name of the region to register:"
 msgstr "Nome da região a registar:"
 
 #. Type: string
 #. Description
-#: ../cinder-api.templates:6001
+#: ../cinder-api.templates:8001
 msgid ""
 "OpenStack supports using availability zones, with each region representing a "
 "location. Please enter the zone that you wish to use when registering the "
@@ -307,5 +323,3 @@ msgstr ""
 "O OpenStack pode ser usado usando zonas de disponibilidade, com cada região "
 "a representar uma localização. Por favor, indique a zona que quer usar ao "
 "registar o ponto de ligação."
-
-
diff --git a/xenial/debian/po/pt_BR.po b/xenial/debian/po/pt_BR.po
new file mode 100644 (file)
index 0000000..bfb2574
--- /dev/null
@@ -0,0 +1,339 @@
+# Debconf translations for cinder.
+# Copyright (C) 2016 THE cinder'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the cinder package.
+# Adriano Rafael Gomes <adrianorg@arg.eti.br>, 2016.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: cinder\n"
+"Report-Msgid-Bugs-To: cinder@packages.debian.org\n"
+"POT-Creation-Date: 2016-03-29 12:24+0000\n"
+"PO-Revision-Date: 2016-04-30 16:27-0300\n"
+"Last-Translator: Adriano Rafael Gomes <adrianorg@arg.eti.br>\n"
+"Language-Team: Brazilian Portuguese <debian-l10n-portuguese@lists.debian."
+"org>\n"
+"Language: pt_BR\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Type: boolean
+#. Description
+#: ../cinder-common.templates:2001
+msgid "Set up a database for Cinder?"
+msgstr "Configurar um banco de dados para o Cinder?"
+
+#. Type: boolean
+#. Description
+#: ../cinder-common.templates:2001
+msgid ""
+"No database has been set up for Cinder to use. Before continuing, you should "
+"make sure you have the following information:"
+msgstr ""
+"Nenhum banco de dados foi configurado para o Cinder utilizar. Antes de "
+"continuar, você deve se certificar que você tem as seguintes informações:"
+
+#. Type: boolean
+#. Description
+#: ../cinder-common.templates:2001
+msgid ""
+" * the type of database that you want to use;\n"
+" * the database server hostname (that server must allow TCP connections from "
+"this\n"
+"   machine);\n"
+" * a username and password to access the database."
+msgstr ""
+" * o tipo de banco de dados que você quer usar;\n"
+" * o nome de máquina do servidor de banco de dados (tal servidor deve\n"
+"   permitir conexões TCP a partir deste computador);\n"
+" * um usuário e uma senha para acessar o banco de dados."
+
+#. Type: boolean
+#. Description
+#: ../cinder-common.templates:2001
+msgid ""
+"If some of these requirements are missing, do not choose this option and run "
+"with regular SQLite support."
+msgstr ""
+"Se algum desses requisitos estiver faltando, rejeite essa opção e execute "
+"com suporte regular ao SQLite."
+
+#. Type: boolean
+#. Description
+#: ../cinder-common.templates:2001
+msgid ""
+"You can change this setting later on by running \"dpkg-reconfigure -plow "
+"cinder\"."
+msgstr ""
+"Você pode mudar essa configuração depois, executando \"dpkg-reconfigure -"
+"plow cinder\"."
+
+#. Type: string
+#. Description
+#: ../cinder-common.templates:3001
+msgid "Authentication server hostname:"
+msgstr "Nome de máquina do servidor de autenticação:"
+
+#. Type: string
+#. Description
+#: ../cinder-common.templates:3001
+msgid ""
+"Please specify the hostname of the authentication server. Typically this is "
+"also the hostname of the OpenStack Identity Service (Keystone)."
+msgstr ""
+"Por favor, especifique o nome de máquina do seu servidor de autenticação. "
+"Tipicamente, esse é também o nome de máquina do Serviço de Identidade do "
+"OpenStack (Keystone)."
+
+#. Type: string
+#. Description
+#. Translators: a "tenant" in OpenStack world is
+#. an entity that contains one or more username/password couples.
+#. It's typically the tenant that will be used for billing. Having more than one
+#. username/password is very helpful in larger organization.
+#. You're advised to either keep "tenant" without translating it
+#. or keep it aside with your translation. Example for French:
+#. proprietaire ("tenant")
+#: ../cinder-common.templates:4001
+msgid "Authentication server tenant name:"
+msgstr "Nome de locatário (\"tenant\") do servidor de autenticação:"
+
+#. Type: string
+#. Description
+#. Translators: a "tenant" in OpenStack world is
+#. an entity that contains one or more username/password couples.
+#. It's typically the tenant that will be used for billing. Having more than one
+#. username/password is very helpful in larger organization.
+#. You're advised to either keep "tenant" without translating it
+#. or keep it aside with your translation. Example for French:
+#. proprietaire ("tenant")
+#: ../cinder-common.templates:4001
+msgid "Please specify the authentication server tenant name."
+msgstr ""
+"Por favor, especifique o nome de locatário (\"tenant\") do servidor de "
+"autenticação."
+
+#. Type: string
+#. Description
+#: ../cinder-common.templates:5001
+msgid "Authentication server username:"
+msgstr "Nome de usuário do servidor de autenticação:"
+
+#. Type: string
+#. Description
+#: ../cinder-common.templates:5001
+msgid "Please specify the username to use with the authentication server."
+msgstr ""
+"Por favor, especifique o nome de usuário para usar com o servidor de "
+"autenticação."
+
+#. Type: password
+#. Description
+#: ../cinder-common.templates:6001
+msgid "Authentication server password:"
+msgstr "Senha do servidor de autenticação:"
+
+#. Type: password
+#. Description
+#: ../cinder-common.templates:6001
+msgid "Please specify the password to use with the authentication server."
+msgstr ""
+"Por favor, especifique a senha para usar com o servidor de autenticação."
+
+#. Type: string
+#. Description
+#: ../cinder-common.templates:7001
+msgid "Cinder volume group:"
+msgstr "Grupo de volume do Cinder:"
+
+#. Type: string
+#. Description
+#: ../cinder-common.templates:7001
+msgid ""
+"Please specify the name of the LVM volume group on which Cinder will create "
+"partitions."
+msgstr ""
+"Por favor, especifique o nome do grupo de volume LVM no qual o Cinder criará "
+"partições."
+
+#. Type: string
+#. Description
+#: ../cinder-common.templates:8001
+msgid "IP address of your RabbitMQ host:"
+msgstr "Endereço IP da sua máquina RabbitMQ:"
+
+#. Type: string
+#. Description
+#. Type: string
+#. Description
+#. Type: password
+#. Description
+#: ../cinder-common.templates:8001 ../cinder-common.templates:9001
+#: ../cinder-common.templates:10001
+msgid ""
+"In order to interoperate with other components of OpenStack, this package "
+"needs to connect to a central RabbitMQ server."
+msgstr ""
+"Para interoperar com outros componentes do OpenStack, esse pacote precisa "
+"conectar a um servidor RabbitMQ central."
+
+#. Type: string
+#. Description
+#: ../cinder-common.templates:8001
+msgid "Please specify the IP address of that server."
+msgstr "Por favor, especifique o endereço IP de tal servidor."
+
+#. Type: string
+#. Description
+#: ../cinder-common.templates:9001
+msgid "Username for connection to the RabbitMQ server:"
+msgstr "Nome de usuário para conexão ao servidor RabbitMQ:"
+
+#. Type: string
+#. Description
+#: ../cinder-common.templates:9001
+msgid "Please specify the username used to connect to the RabbitMQ server."
+msgstr ""
+"Por favor, especifique o nome de usuário usado para conectar ao servidor "
+"RabbitMQ."
+
+#. Type: password
+#. Description
+#: ../cinder-common.templates:10001
+msgid "Password for connection to the RabbitMQ server:"
+msgstr "Senha para conexão com o servidor RabbitMQ:"
+
+#. Type: password
+#. Description
+#: ../cinder-common.templates:10001
+msgid "Please specify the password used to connect to the RabbitMQ server."
+msgstr ""
+"Por favor, especifique a senha usada para conectar ao servidor RabbitMQ."
+
+#. Type: boolean
+#. Description
+#: ../cinder-api.templates:2001
+msgid "Register Cinder in the Keystone endpoint catalog?"
+msgstr "Registrar o Cinder no catálogo de \"endpoint\" do Keystone?"
+
+#. Type: boolean
+#. Description
+#: ../cinder-api.templates:2001
+msgid ""
+"Each OpenStack service (each API) should be registered in order to be "
+"accessible. This is done using \"keystone service-create\" and \"keystone "
+"endpoint-create\". This can be done automatically now."
+msgstr ""
+"Cada serviço OpenStack (cada API) deve ser registrado para ser acessível. "
+"Isso é feito usando \"keystone service-create\" e \"keystone endpoint-create"
+"\". Isso pode ser feito automaticamente agora."
+
+#. Type: boolean
+#. Description
+#: ../cinder-api.templates:2001
+msgid ""
+"Note that you will need to have an up and running Keystone server on which "
+"to connect using the Keystone authentication token."
+msgstr ""
+"Note que você precisará ter um servidor Keystone configurado e em execução "
+"no qual conectar usando o \"token\" de autenticação do Keystone."
+
+#. Type: string
+#. Description
+#: ../cinder-api.templates:3001
+msgid "Keystone server IP address:"
+msgstr "Endereço IP do servidor Keystone:"
+
+#. Type: string
+#. Description
+#: ../cinder-api.templates:3001
+msgid ""
+"Please enter the IP address of the Keystone server, so that cinder-api can "
+"contact Keystone to do the Cinder service and endpoint creation."
+msgstr ""
+"Por favor, informe o endereço IP do servidor Keystone, de forma que o cinder-"
+"api possa contatar o Keystone para efetuar a criação do \"endpoint\" e do "
+"serviço Cinder."
+
+#. Type: string
+#. Description
+#: ../cinder-api.templates:4001
+msgid "Keystone admin name:"
+msgstr "Nome de admin do Keystone:"
+
+#. Type: string
+#. Description
+#. Type: string
+#. Description
+#. Type: password
+#. Description
+#: ../cinder-api.templates:4001 ../cinder-api.templates:5001
+#: ../cinder-api.templates:6001
+msgid ""
+"To register the service endpoint, this package needs to know the Admin "
+"login, name, project name, and password to the Keystone server."
+msgstr ""
+"Para registrar o \"endpoint\" do serviço, esse pacote precisa saber o login, "
+"nome, nome do projeto e senha do Admin no servidor Keystone."
+
+#. Type: string
+#. Description
+#: ../cinder-api.templates:5001
+msgid "Keystone admin project name:"
+msgstr "Nome do projeto admin no Keystone:"
+
+#. Type: password
+#. Description
+#: ../cinder-api.templates:6001
+msgid "Keystone admin password:"
+msgstr "Senha do admin no Keystone:"
+
+#. Type: string
+#. Description
+#: ../cinder-api.templates:7001
+msgid "Cinder endpoint IP address:"
+msgstr "Endereço IP do \"endpoint\" Cinder:"
+
+#. Type: string
+#. Description
+#: ../cinder-api.templates:7001
+msgid "Please enter the IP address that will be used to contact Cinder."
+msgstr ""
+"Por favor, informe o endereço IP que será usado para contatar o Cinder."
+
+#. Type: string
+#. Description
+#: ../cinder-api.templates:7001
+msgid ""
+"This IP address should be accessible from the clients that will use this "
+"service, so if you are installing a public cloud, this should be a public IP "
+"address."
+msgstr ""
+"Esse endereço IP deveria ser acessível a partir dos clientes que usarão esse "
+"serviço, assim se você está instalando uma nuvem pública, ele deveria ser um "
+"endereço IP público."
+
+#. Type: string
+#. Description
+#: ../cinder-api.templates:8001
+msgid "Name of the region to register:"
+msgstr "Nome da região para registrar:"
+
+#. Type: string
+#. Description
+#: ../cinder-api.templates:8001
+msgid ""
+"OpenStack supports using availability zones, with each region representing a "
+"location. Please enter the zone that you wish to use when registering the "
+"endpoint."
+msgstr ""
+"O OpenStack suporta usar zonas de disponibilidade, com cada região "
+"representando uma localidade. Por favor, informe a zona que você deseja usar "
+"ao registrar o \"endpoint\"."
+
+#~ msgid ""
+#~ "To configure its endpoint in Keystone, cinder-api needs the Keystone "
+#~ "authentication token."
+#~ msgstr ""
+#~ "Para configurar o seu \"endpoint\" no Keystone, o cinder-api precisa do "
+#~ "\"token\" de autenticação do Keystone."
index 0b8ff112ccff044d9d8773c942880ff7d441432e..9c22445cc020dd51d4404e60a110509eb160dd36 100644 (file)
@@ -6,7 +6,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: cinder 2013.2-1\n"
 "Report-Msgid-Bugs-To: cinder@packages.debian.org\n"
-"POT-Creation-Date: 2013-12-19 16:02+0800\n"
+"POT-Creation-Date: 2016-03-29 12:24+0000\n"
 "PO-Revision-Date: 2013-11-17 08:49+0400\n"
 "Last-Translator: Yuri Kozlov <yuray@komyakino.ru>\n"
 "Language-Team: Russian <debian-l10n-russian@lists.debian.org>\n"
@@ -245,37 +245,54 @@ msgstr ""
 "Введите IP-адрес сервера Keystone для того, чтобы cinder-api могла "
 "подключиться к Keystone для запуска службы Cinder и создания конечной точки."
 
-#. Type: password
+#. Type: string
 #. Description
 #: ../cinder-api.templates:4001
-msgid "Keystone authentication token:"
+#, fuzzy
+#| msgid "Keystone authentication token:"
+msgid "Keystone admin name:"
 msgstr "Токен аутентификации Keystone:"
 
+#. Type: string
+#. Description
+#. Type: string
+#. Description
 #. Type: password
 #. Description
-#: ../cinder-api.templates:4001
+#: ../cinder-api.templates:4001 ../cinder-api.templates:5001
+#: ../cinder-api.templates:6001
 msgid ""
-"To configure its endpoint in Keystone, cinder-api needs the Keystone "
-"authentication token."
+"To register the service endpoint, this package needs to know the Admin "
+"login, name, project name, and password to the Keystone server."
 msgstr ""
-"Для настройки собственной конечной точки в Keystone cinder-api требуется "
-"токен аутентификации Keystone."
 
 #. Type: string
 #. Description
 #: ../cinder-api.templates:5001
+msgid "Keystone admin project name:"
+msgstr ""
+
+#. Type: password
+#. Description
+#: ../cinder-api.templates:6001
+msgid "Keystone admin password:"
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../cinder-api.templates:7001
 msgid "Cinder endpoint IP address:"
 msgstr "IP-адрес конечной точки Cinder:"
 
 #. Type: string
 #. Description
-#: ../cinder-api.templates:5001
+#: ../cinder-api.templates:7001
 msgid "Please enter the IP address that will be used to contact Cinder."
 msgstr "Введите IP-адрес, который будет использован для подключения к Cinder."
 
 #. Type: string
 #. Description
-#: ../cinder-api.templates:5001
+#: ../cinder-api.templates:7001
 msgid ""
 "This IP address should be accessible from the clients that will use this "
 "service, so if you are installing a public cloud, this should be a public IP "
@@ -287,13 +304,13 @@ msgstr ""
 
 #. Type: string
 #. Description
-#: ../cinder-api.templates:6001
+#: ../cinder-api.templates:8001
 msgid "Name of the region to register:"
 msgstr "Название области для регистрации:"
 
 #. Type: string
 #. Description
-#: ../cinder-api.templates:6001
+#: ../cinder-api.templates:8001
 msgid ""
 "OpenStack supports using availability zones, with each region representing a "
 "location. Please enter the zone that you wish to use when registering the "
@@ -303,6 +320,13 @@ msgstr ""
 "представляет определённое расположение. Введите зону, которую вы хотите "
 "использовать при регистрации конечной точки."
 
+#~ msgid ""
+#~ "To configure its endpoint in Keystone, cinder-api needs the Keystone "
+#~ "authentication token."
+#~ msgstr ""
+#~ "Для настройки собственной конечной точки в Keystone cinder-api требуется "
+#~ "токен аутентификации Keystone."
+
 #~ msgid "Start Cinder services at boot?"
 #~ msgstr "Запускать службы Cinder при включении машины?"
 
index 8138278725b764da7d8ecc53eddca94b11c968a6..f7840af3f967ecb4b7a954e552e964d8adfd4d4f 100644 (file)
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: cinder\n"
 "Report-Msgid-Bugs-To: cinder@packages.debian.org\n"
-"POT-Creation-Date: 2012-11-28 11:58+0000\n"
+"POT-Creation-Date: 2016-03-29 12:24+0000\n"
 "PO-Revision-Date: 2014-01-08 16:52+0100\n"
 "Last-Translator: Martin Bagge / brother <brother@bsnet.se>\n"
 "Language-Team: Swedish <debian-l10n-swedish@lists.debian.org>\n"
@@ -17,20 +17,6 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 "X-Generator: Poedit 1.5.4\n"
 
-#. Type: boolean
-#. Description
-#: ../cinder-common.templates:1001
-msgid "Start cinder services at boot?"
-msgstr "Ska cinder-tjänster startas vid systemets uppstart?"
-
-#. Type: boolean
-#. Description
-#: ../cinder-common.templates:1001
-msgid ""
-"Please choose whether you want to start Cinder services when the machine is "
-"booted up."
-msgstr "Ange om du vill att Cinder-tjänster ska starta när maskinen startar."
-
 #. Type: boolean
 #. Description
 #: ../cinder-common.templates:2001
@@ -40,9 +26,13 @@ msgstr "Ska en databas installeras för Cinder?"
 #. Type: boolean
 #. Description
 #: ../cinder-common.templates:2001
+#, fuzzy
+#| msgid ""
+#| "No database has been set up for Cinder to use. If you want to set one up "
+#| "now, please make sure you have all needed information:"
 msgid ""
-"No database has been set up for Cinder to use. If you want to set one up "
-"now, please make sure you have all needed information:"
+"No database has been set up for Cinder to use. Before continuing, you should "
+"make sure you have the following information:"
 msgstr ""
 "Ingen databas har installerats för Cinder. Innan du fortsätter behöver "
 "följande finnas tillgängligt:"
@@ -50,11 +40,18 @@ msgstr ""
 #. Type: boolean
 #. Description
 #: ../cinder-common.templates:2001
+#, fuzzy
+#| msgid ""
+#| " * the host name of the database server (which must allow TCP\n"
+#| "   connections from this machine);\n"
+#| " * a username and password to access the database;\n"
+#| " * the type of database management software you want to use."
 msgid ""
-" * the host name of the database server (which must allow TCP\n"
-"   connections from this machine);\n"
-" * a username and password to access the database;\n"
-" * the type of database management software you want to use."
+" * the type of database that you want to use;\n"
+" * the database server hostname (that server must allow TCP connections from "
+"this\n"
+"   machine);\n"
+" * a username and password to access the database."
 msgstr ""
 " * serverns värdnamn (som måste kunna ta emot TCP-anslutningar\n"
 "   från den här maskinen)\n"
@@ -65,18 +62,20 @@ msgstr ""
 #. Description
 #: ../cinder-common.templates:2001
 msgid ""
-"If you don't choose this option, no database will be set up and Cinder will "
-"use regular SQLite support."
+"If some of these requirements are missing, do not choose this option and run "
+"with regular SQLite support."
 msgstr ""
-"Om något av dessa krav saknar bör du avböja detta alternativ och fortsätta "
-"använda sqlite-stödet."
 
 #. Type: boolean
 #. Description
 #: ../cinder-common.templates:2001
+#, fuzzy
+#| msgid ""
+#| "You can change this setting later on by running \"dpkg-reconfigure -plow "
+#| "cinder-common\"."
 msgid ""
 "You can change this setting later on by running \"dpkg-reconfigure -plow "
-"cinder-common\"."
+"cinder\"."
 msgstr ""
 "Denna inställning kan ändras senare genom att köra \"dpkg-reconfigure -plow "
 "cinder-common\"."
@@ -84,37 +83,81 @@ msgstr ""
 #. Type: string
 #. Description
 #: ../cinder-common.templates:3001
-msgid "Auth server hostname:"
+#, fuzzy
+#| msgid "Auth server hostname:"
+msgid "Authentication server hostname:"
 msgstr "Värdnamn för identifieringsserver:"
 
 #. Type: string
 #. Description
 #: ../cinder-common.templates:3001
+#, fuzzy
+#| msgid ""
+#| "Please specify the URL of your Cinder authentication server. Typically  "
+#| "this is also the URL of your OpenStack Identity Service (Keystone)."
 msgid ""
-"Please specify the URL of your Cinder authentication server. Typically  this "
-"is also the URL of your OpenStack Identity Service (Keystone)."
+"Please specify the hostname of the authentication server. Typically this is "
+"also the hostname of the OpenStack Identity Service (Keystone)."
 msgstr ""
 "Ange URL till din Cinder-identifieringsserver. Detta är vanligtvis samma URL "
 "som till din OpenStack-identitetstjänst (Keystone)."
 
 #. Type: string
 #. Description
+#. Translators: a "tenant" in OpenStack world is
+#. an entity that contains one or more username/password couples.
+#. It's typically the tenant that will be used for billing. Having more than one
+#. username/password is very helpful in larger organization.
+#. You're advised to either keep "tenant" without translating it
+#. or keep it aside with your translation. Example for French:
+#. proprietaire ("tenant")
 #: ../cinder-common.templates:4001
-msgid "Auth server tenant name:"
+#, fuzzy
+#| msgid "Auth server tenant name:"
+msgid "Authentication server tenant name:"
 msgstr "Namn för \"tenant\" (administratör) på identifieringsservern:"
 
+#. Type: string
+#. Description
+#. Translators: a "tenant" in OpenStack world is
+#. an entity that contains one or more username/password couples.
+#. It's typically the tenant that will be used for billing. Having more than one
+#. username/password is very helpful in larger organization.
+#. You're advised to either keep "tenant" without translating it
+#. or keep it aside with your translation. Example for French:
+#. proprietaire ("tenant")
+#: ../cinder-common.templates:4001
+msgid "Please specify the authentication server tenant name."
+msgstr ""
+
 #. Type: string
 #. Description
 #: ../cinder-common.templates:5001
-msgid "Auth server username:"
+#, fuzzy
+#| msgid "Auth server username:"
+msgid "Authentication server username:"
 msgstr "Användarnamn på identifieringsservern:"
 
+#. Type: string
+#. Description
+#: ../cinder-common.templates:5001
+msgid "Please specify the username to use with the authentication server."
+msgstr ""
+
 #. Type: password
 #. Description
 #: ../cinder-common.templates:6001
-msgid "Auth server password:"
+#, fuzzy
+#| msgid "Auth server password:"
+msgid "Authentication server password:"
 msgstr "Lösenord på identifieringsservern:"
 
+#. Type: password
+#. Description
+#: ../cinder-common.templates:6001
+msgid "Please specify the password to use with the authentication server."
+msgstr ""
+
 #. Type: string
 #. Description
 #: ../cinder-common.templates:7001
@@ -124,25 +167,85 @@ msgstr "Volymgrupp för Cinder:"
 #. Type: string
 #. Description
 #: ../cinder-common.templates:7001
+#, fuzzy
+#| msgid ""
+#| "Please specify the name of the LVM volume group (vg) on which Cinder will "
+#| "create partitions."
 msgid ""
-"Please specify the name of the LVM volume group (vg) on which Cinder will "
-"create partitions."
+"Please specify the name of the LVM volume group on which Cinder will create "
+"partitions."
 msgstr ""
 "Ange namnet för LVM-volym-grupp (vg) där Cinder ska skapa sina partitioner."
 
+#. Type: string
+#. Description
+#: ../cinder-common.templates:8001
+msgid "IP address of your RabbitMQ host:"
+msgstr ""
+
+#. Type: string
+#. Description
+#. Type: string
+#. Description
+#. Type: password
+#. Description
+#: ../cinder-common.templates:8001 ../cinder-common.templates:9001
+#: ../cinder-common.templates:10001
+msgid ""
+"In order to interoperate with other components of OpenStack, this package "
+"needs to connect to a central RabbitMQ server."
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../cinder-common.templates:8001
+msgid "Please specify the IP address of that server."
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../cinder-common.templates:9001
+msgid "Username for connection to the RabbitMQ server:"
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../cinder-common.templates:9001
+msgid "Please specify the username used to connect to the RabbitMQ server."
+msgstr ""
+
+#. Type: password
+#. Description
+#: ../cinder-common.templates:10001
+msgid "Password for connection to the RabbitMQ server:"
+msgstr ""
+
+#. Type: password
+#. Description
+#: ../cinder-common.templates:10001
+msgid "Please specify the password used to connect to the RabbitMQ server."
+msgstr ""
+
 #. Type: boolean
 #. Description
-#: ../cinder-api.templates:1001
-msgid "Register Cinder in the keystone endpoint catalog?"
+#: ../cinder-api.templates:2001
+#, fuzzy
+#| msgid "Register Cinder in the keystone endpoint catalog?"
+msgid "Register Cinder in the Keystone endpoint catalog?"
 msgstr "Ska Cinder registreras i keystones katalog med ändpunkter?"
 
 #. Type: boolean
 #. Description
-#: ../cinder-api.templates:1001
+#: ../cinder-api.templates:2001
+#, fuzzy
+#| msgid ""
+#| "Each Openstack services (each API) should be registered in order to be "
+#| "accessible. This is done using \"keystone service-create\" and \"keystone "
+#| "endpoint-create\". Select if you want to run these commands now."
 msgid ""
-"Each Openstack services (each API) should be registered in order to be "
+"Each OpenStack service (each API) should be registered in order to be "
 "accessible. This is done using \"keystone service-create\" and \"keystone "
-"endpoint-create\". Select if you want to run these commands now."
+"endpoint-create\". This can be done automatically now."
 msgstr ""
 "Alla OpenStack-tjänster (varje API) ska registreras för att kunna användas. "
 "Detta görs med kommandona \"keystone service-create\" och \"keystone "
@@ -150,61 +253,92 @@ msgstr ""
 
 #. Type: boolean
 #. Description
-#: ../cinder-api.templates:1001
+#: ../cinder-api.templates:2001
+#, fuzzy
+#| msgid ""
+#| "Note that you will need to have an up and running keystone server on "
+#| "which to connect using the Keystone auth token."
 msgid ""
-"Note that you will need to have an up and running keystone server on which "
-"to connect using the Keystone auth token."
+"Note that you will need to have an up and running Keystone server on which "
+"to connect using the Keystone authentication token."
 msgstr "OBS. Du behöver ha en fungerande keystone-server att ansluta till."
 
 #. Type: string
 #. Description
-#: ../cinder-api.templates:2001
-msgid "Keystone IP address:"
+#: ../cinder-api.templates:3001
+#, fuzzy
+#| msgid "Keystone IP address:"
+msgid "Keystone server IP address:"
 msgstr "IP-adress till Keystone:"
 
 #. Type: string
 #. Description
-#: ../cinder-api.templates:2001
+#: ../cinder-api.templates:3001
+#, fuzzy
+#| msgid ""
+#| "Enter the IP address of your keystone server, so that cinder-api can "
+#| "contact Keystone to do the Cinder service and endpoint creation."
 msgid ""
-"Enter the IP address of your keystone server, so that cinder-api can contact "
-"Keystone to do the Cinder service and endpoint creation."
+"Please enter the IP address of the Keystone server, so that cinder-api can "
+"contact Keystone to do the Cinder service and endpoint creation."
 msgstr ""
 "Ange IP-adressen till din keystone-server så att cinder-api kan kontakta "
 "Keystone för att lägga till Cinder-tjänsten som en ändpunkt."
 
-#. Type: password
+#. Type: string
 #. Description
-#: ../cinder-api.templates:3001
-msgid "Keystone Auth Token:"
-msgstr "Autetiseringsvärde för Keystone:"
+#: ../cinder-api.templates:4001
+#, fuzzy
+#| msgid "Keystone IP address:"
+msgid "Keystone admin name:"
+msgstr "IP-adress till Keystone:"
 
+#. Type: string
+#. Description
+#. Type: string
+#. Description
 #. Type: password
 #. Description
-#: ../cinder-api.templates:3001
+#: ../cinder-api.templates:4001 ../cinder-api.templates:5001
+#: ../cinder-api.templates:6001
 msgid ""
-"To configure its endpoint in Keystone, cinder-api needs the Keystone auth "
-"token."
+"To register the service endpoint, this package needs to know the Admin "
+"login, name, project name, and password to the Keystone server."
 msgstr ""
-"För att lägga till ändpunkt i Keystone behöver cinder-api ett "
-"autentiseringsvärde för Keystone."
 
 #. Type: string
 #. Description
-#: ../cinder-api.templates:4001
+#: ../cinder-api.templates:5001
+msgid "Keystone admin project name:"
+msgstr ""
+
+#. Type: password
+#. Description
+#: ../cinder-api.templates:6001
+#, fuzzy
+#| msgid "Keystone IP address:"
+msgid "Keystone admin password:"
+msgstr "IP-adress till Keystone:"
+
+#. Type: string
+#. Description
+#: ../cinder-api.templates:7001
 msgid "Cinder endpoint IP address:"
 msgstr "IP-adress för Cinder-ändpunkt:"
 
 #. Type: string
 #. Description
-#: ../cinder-api.templates:4001
-msgid ""
-"Enter the IP address that will be used to contact Cinder (eg: the Cinder "
-"endpoint IP address)."
+#: ../cinder-api.templates:7001
+#, fuzzy
+#| msgid ""
+#| "Enter the IP address that will be used to contact Cinder (eg: the Cinder "
+#| "endpoint IP address)."
+msgid "Please enter the IP address that will be used to contact Cinder."
 msgstr "Ange den IP-adress som ska användas för att kontakta Cinder."
 
 #. Type: string
 #. Description
-#: ../cinder-api.templates:4001
+#: ../cinder-api.templates:7001
 msgid ""
 "This IP address should be accessible from the clients that will use this "
 "service, so if you are installing a public cloud, this should be a public IP "
@@ -216,17 +350,38 @@ msgstr ""
 
 #. Type: string
 #. Description
-#: ../cinder-api.templates:5001
+#: ../cinder-api.templates:8001
 msgid "Name of the region to register:"
 msgstr "Regionnamn:"
 
 #. Type: string
 #. Description
-#: ../cinder-api.templates:5001
+#: ../cinder-api.templates:8001
+#, fuzzy
+#| msgid ""
+#| "Openstack can be used using availability zones, with each region "
+#| "representing a location. Please enter the zone that you wish to use when "
+#| "registering the endpoint."
 msgid ""
-"Openstack can be used using availability zones, with each region "
-"representing a location. Please enter the zone that you wish to use when "
-"registering the endpoint."
+"OpenStack supports using availability zones, with each region representing a "
+"location. Please enter the zone that you wish to use when registering the "
+"endpoint."
 msgstr ""
 "OpenStack kan användas med tillgänglighetszoner. Varje region representerar "
 "en plats. Ange zonen som ska användas när ändpunkten registreras."
+
+#~ msgid "Start cinder services at boot?"
+#~ msgstr "Ska cinder-tjänster startas vid systemets uppstart?"
+
+#~ msgid ""
+#~ "Please choose whether you want to start Cinder services when the machine "
+#~ "is booted up."
+#~ msgstr ""
+#~ "Ange om du vill att Cinder-tjänster ska starta när maskinen startar."
+
+#~ msgid ""
+#~ "If you don't choose this option, no database will be set up and Cinder "
+#~ "will use regular SQLite support."
+#~ msgstr ""
+#~ "Om något av dessa krav saknar bör du avböja detta alternativ och "
+#~ "fortsätta använda sqlite-stödet."
index c178a2ce2231a218d1997f338a1f9ad0a9e90e04..117c298d61c2176f8f81fed1c2de534ddbbcd27f 100644 (file)
@@ -1,6 +1,6 @@
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
+# This file is distributed under the same license as the cinder package.
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 #
 #, fuzzy
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: cinder\n"
 "Report-Msgid-Bugs-To: cinder@packages.debian.org\n"
-"POT-Creation-Date: 2013-12-19 16:02+0800\n"
+"POT-Creation-Date: 2016-03-29 12:24+0000\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -222,35 +222,52 @@ msgid ""
 "contact Keystone to do the Cinder service and endpoint creation."
 msgstr ""
 
-#. Type: password
+#. Type: string
 #. Description
 #: ../cinder-api.templates:4001
-msgid "Keystone authentication token:"
+msgid "Keystone admin name:"
 msgstr ""
 
+#. Type: string
+#. Description
+#. Type: string
+#. Description
 #. Type: password
 #. Description
-#: ../cinder-api.templates:4001
+#: ../cinder-api.templates:4001 ../cinder-api.templates:5001
+#: ../cinder-api.templates:6001
 msgid ""
-"To configure its endpoint in Keystone, cinder-api needs the Keystone "
-"authentication token."
+"To register the service endpoint, this package needs to know the Admin "
+"login, name, project name, and password to the Keystone server."
 msgstr ""
 
 #. Type: string
 #. Description
 #: ../cinder-api.templates:5001
+msgid "Keystone admin project name:"
+msgstr ""
+
+#. Type: password
+#. Description
+#: ../cinder-api.templates:6001
+msgid "Keystone admin password:"
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../cinder-api.templates:7001
 msgid "Cinder endpoint IP address:"
 msgstr ""
 
 #. Type: string
 #. Description
-#: ../cinder-api.templates:5001
+#: ../cinder-api.templates:7001
 msgid "Please enter the IP address that will be used to contact Cinder."
 msgstr ""
 
 #. Type: string
 #. Description
-#: ../cinder-api.templates:5001
+#: ../cinder-api.templates:7001
 msgid ""
 "This IP address should be accessible from the clients that will use this "
 "service, so if you are installing a public cloud, this should be a public IP "
@@ -259,13 +276,13 @@ msgstr ""
 
 #. Type: string
 #. Description
-#: ../cinder-api.templates:6001
+#: ../cinder-api.templates:8001
 msgid "Name of the region to register:"
 msgstr ""
 
 #. Type: string
 #. Description
-#: ../cinder-api.templates:6001
+#: ../cinder-api.templates:8001
 msgid ""
 "OpenStack supports using availability zones, with each region representing a "
 "location. Please enter the zone that you wish to use when registering the "
index 1a1c202e59773971c9a45291c245177b52aae49b..c2d613bd4e33c9aa49df11bc54b3fcf8fae6514c 100755 (executable)
@@ -1,9 +1,6 @@
 #!/usr/bin/make -f
 
 include /usr/share/openstack-pkg-tools/pkgos.make
-export OSLO_PACKAGE_VERSION=$(shell dpkg-parsechangelog | grep Version: | cut -d' ' -f2 | sed -e 's/^[[:digit:]]*://' -e 's/[-].*//' -e 's/~/.0/' | head -n 1)
-
-export DH_VERBOSE=1
 
 %:
        dh $@ --buildsystem=python_distutils --with python2,systemd,sphinxdoc
@@ -17,7 +14,7 @@ ifeq (,$(findstring nocheck, $(DEB_BUILD_OPTIONS)))
                rm -rf .testrepository ; \
                testr-python$$PYMAJOR init ; \
                TEMP_REZ=`mktemp -t` ; \
-               PYTHONPATH=$(CURDIR) PYTHON=python$$i testr-python$$PYMAJOR run --subunit 'cinder\.tests\.unit\.(?!.*test_volume\.VolumeTestCase\.test_create_delete_volume.*)' | tee $$TEMP_REZ | subunit2pyunit ; \
+               PYTHONPATH=$(CURDIR) PYTHON=python$$i testr-python$$PYMAJOR run --subunit 'cinder\.tests\.unit\.(?!(.*test_volume\.VolumeTestCase\.test_create_delete_volume.*|.*test_volume\.ConsistencyGroupTestCase\.test_create_delete_cgsnapshot.*|.*test_volume\.VolumeMigrationTestCase\.test_retype_volume_driver_success.*))' | tee $$TEMP_REZ | subunit2pyunit ; \
                cat $$TEMP_REZ | subunit-filter -s --no-passthrough | subunit-stats ; \
                rm -f $$TEMP_REZ ; \
                testr-python$$PYMAJOR slowest ; \
@@ -29,6 +26,9 @@ override_dh_clean:
        rm -f debian/cinder-common.config debian/cinder-common.postinst debian/cinder-api.config debian/cinder-api.postinst debian/cinder-volume.postinst
        rm -rf debian/*.upstart debian/*.service
 
+override_dh_auto_clean:
+       echo "Do nothing..."
+
 override_dh_auto_install:
        echo "Do nothing..."
 
@@ -53,12 +53,15 @@ override_dh_install:
                --namespace oslo.reports \
                --namespace oslo.rootwrap \
                --namespace oslo.serialization \
-               --namespace oslo.service \
+               --namespace oslo.service.periodic_task \
+               --namespace oslo.service.service \
+               --namespace oslo.service.sslutils \
+               --namespace oslo.service.wsgi \
                --namespace oslo.utils \
                --namespace oslo.versionedobjects \
                --namespace oslo.vmware
-# The generator is currently missing enabled_backend and the [lvm]
-# section. This script fixes it until upstream gets smarter.
+#      # The generator is currently missing enabled_backend and the [lvm]
+#      # section. This script fixes it until upstream gets smarter.
 #      chmod +x debian/gen-fixed-config
 #      ./debian/gen-fixed-config
 #      cp etc/cinder/cinder.conf.sample $(CURDIR)/debian/cinder-common/usr/share/cinder-common/cinder.conf
@@ -66,27 +69,26 @@ override_dh_install:
        dh_install --fail-missing -Xbin/cinder-all
        install -D -m 0440 debian/cinder-common.sudoers $(CURDIR)/debian/cinder-common/etc/sudoers.d/cinder-common
 
+       # Set LVM as default backend
+       pkgos-fix-config-default $(CURDIR)/debian/cinder-common/usr/share/cinder-common/cinder.conf DEFAULT enabled_backends lvm
+       echo "[lvm]"                            >> $(CURDIR)/debian/cinder-common/usr/share/cinder-common/cinder.conf
+       echo "volume_driver = cinder.volume.drivers.lvm.LVMVolumeDriver" >> $(CURDIR)/debian/cinder-common/usr/share/cinder-common/cinder.conf
+       echo "volume_group = pkgosvg0"          >> $(CURDIR)/debian/cinder-common/usr/share/cinder-common/cinder.conf
+       echo "iscsi_protocol = iscsi"           >> $(CURDIR)/debian/cinder-common/usr/share/cinder-common/cinder.conf
+       echo "iscsi_helper = tgtadm"            >> $(CURDIR)/debian/cinder-common/usr/share/cinder-common/cinder.conf
+
        # Set a default value for lock_path & state_path
        pkgos-fix-config-default $(CURDIR)/debian/cinder-common/usr/share/cinder-common/cinder.conf oslo_concurrency lock_path /var/lock/cinder
-       pkgos-fix-config-default $(CURDIR)/debian/cinder-common/usr/share/cinder-common/cinder.conf oslo_concurrency state_path /var/lib/cinder
 
        # Disable https in default setup, as this makes our CI fail
        pkgos-fix-config-default $(CURDIR)/debian/cinder-common/usr/share/cinder-common/cinder.conf keystone_authtoken auth_protocol http
 
        # Fix the missing sql_connection directive
-       pkgos-fix-config-default $(CURDIR)/debian/cinder-common/usr/share/cinder-common/cinder.conf database connection sqlite:////var/lib/cinder/cinderdb
+       pkgos-fix-config-default $(CURDIR)/debian/cinder-common/usr/share/cinder-common/cinder.conf database sqlite:////var/lib/cinder/cinderdb
 
        # Put file under /etc/cinder
        install -D -m 0644 $(CURDIR)/debian/cinder-common/usr/share/cinder-common/cinder.conf $(CURDIR)/debian/cinder-common/etc/cinder/cinder.conf
 
-       # Set LVM as default backend
-       pkgos-fix-config-default $(CURDIR)/debian/cinder-common/usr/share/cinder-common/cinder.conf DEFAULT enabled_backends lvm
-       echo "[lvm]"                            >> $(CURDIR)/debian/cinder-common/usr/share/cinder-common/cinder.conf
-       echo "volume_driver = cinder.volume.drivers.lvm.LVMVolumeDriver" >> $(CURDIR)/debian/cinder-common/usr/share/cinder-common/cinder.conf
-       echo "volume_group = pkgosvg0"          >> $(CURDIR)/debian/cinder-common/usr/share/cinder-common/cinder.conf
-       echo "iscsi_protocol = iscsi"           >> $(CURDIR)/debian/cinder-common/usr/share/cinder-common/cinder.conf
-       echo "iscsi_helper = tgtadm"            >> $(CURDIR)/debian/cinder-common/usr/share/cinder-common/cinder.conf
-
        install -D -m 0644 $(CURDIR)/etc/cinder/logging_sample.conf $(CURDIR)/debian/cinder-common/usr/share/cinder-common/logging.conf
 
 override_dh_fixperms:
@@ -104,7 +106,7 @@ override_dh_auto_build:
 
 override_dh_sphinxdoc:
 ifeq (,$(findstring nodocs, $(DEB_BUILD_OPTIONS)))
-       python setup.py build_sphinx
+       PYTHONPATH=$(CURDIR) python setup.py build_sphinx
        cp -rf doc/build/html $(CURDIR)/debian/cinder-doc/usr/share/doc/cinder-doc
        dh_sphinxdoc -O--buildsystem=python_distutils
 endif
index 9a5870436ea13400edd91d6277dd930570c38f88..898fe30616305b3e9acf0605122ccd466f6b711a 100644 (file)
@@ -1,3 +1,3 @@
 version=3
-opts="uversionmangle=s/\.(b|rc)/~$1/" \
+opts="uversionmangle=s/\.(b|rc)/~$1/",dversionmangle=s/\+dfsg\d+$// \
 https://github.com/openstack/cinder/tags .*/(\d[\d\.]+)\.tar\.gz