From c3c94ca6bc28930de54443713d7b28218c5f8cb3 Mon Sep 17 00:00:00 2001 From: John Griffith Date: Wed, 11 Feb 2015 18:55:47 -0700 Subject: [PATCH] Add eval message when setting Cinder lvm.conf We added an lvm filter for use when using Cinder's LVM driver that would only scan devices that we have actually deployed Cinder Volume Groups on. This patch adds a simple output message to the setup routine so we can more easily inspect what was found and what has been set during devstack setup. Change-Id: Iba5012caffd45dfb5143b6df954eed277445a60e --- lib/cinder_backends/lvm | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/cinder_backends/lvm b/lib/cinder_backends/lvm index 4b9d8dc950..d83c31a81e 100644 --- a/lib/cinder_backends/lvm +++ b/lib/cinder_backends/lvm @@ -77,6 +77,7 @@ function configure_cinder_backend_conf_lvm { local line for pv_info in $(sudo pvs --noheadings -o name,vg_name --separator ';'); do + echo_summary "Evaluate PV info for Cinder lvm.conf: $pv_info" IFS=';' read pv vg <<< $pv_info for line in ${conf_entries}; do IFS='=' read label group <<< $line