summaryrefslogtreecommitdiffstats
path: root/meta-openstack/classes
diff options
context:
space:
mode:
authorRyosuke Saito <ryosuke.saito@linaro.org>2025-07-17 12:05:41 +0900
committerBruce Ashfield <bruce.ashfield@gmail.com>2025-07-17 23:49:59 -0400
commit6c5afb77aa5580dbe737f682ee2f792122c0c2f3 (patch)
tree2062543d37187caf46177f4f07f50df7f71d191c /meta-openstack/classes
parent24f0b028ecdd3740a4a7b2e961d00bc4587f6e7d (diff)
downloadmeta-cloud-services-master.tar.gz
meta-openstack: Fix whitespace warningsHEADmaster
Add whitespaces around variable assignments to eliminate the build warnings: WARNING: python-ceilometer_git.bb:25 has a lack of whitespace around the assignment: 'KEYSTONE_HOST="${CONTROLLER_IP}"' WARNING: python-cinder_git.bb:39 has a lack of whitespace around the assignment: 'KEYSTONE_HOST="${CONTROLLER_IP}"' ... Signed-off-by: Ryosuke Saito <ryosuke.saito@linaro.org> Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Diffstat (limited to 'meta-openstack/classes')
-rw-r--r--meta-openstack/classes/monitor.bbclass12
1 files changed, 6 insertions, 6 deletions
diff --git a/meta-openstack/classes/monitor.bbclass b/meta-openstack/classes/monitor.bbclass
index e217780..7810b9b 100644
--- a/meta-openstack/classes/monitor.bbclass
+++ b/meta-openstack/classes/monitor.bbclass
@@ -1,9 +1,9 @@
1MONITOR_STAGING_DIR="${STAGING_DIR}/monitor" 1MONITOR_STAGING_DIR = "${STAGING_DIR}/monitor"
2MONITOR_STAGING_SERVICES_DIR="${MONITOR_STAGING_DIR}/services" 2MONITOR_STAGING_SERVICES_DIR = "${MONITOR_STAGING_DIR}/services"
3MONITOR_STAGING_CHECKS_DIR="${MONITOR_STAGING_DIR}/checks" 3MONITOR_STAGING_CHECKS_DIR = "${MONITOR_STAGING_DIR}/checks"
4MONITOR_CONFIG_DIR="${IMAGE_ROOTFS}/etc/monitor" 4MONITOR_CONFIG_DIR = "${IMAGE_ROOTFS}/etc/monitor"
5MONITOR_CONFIG_SERVICES_DIR="${MONITOR_CONFIG_DIR}/services" 5MONITOR_CONFIG_SERVICES_DIR = "${MONITOR_CONFIG_DIR}/services"
6MONITOR_CONFIG_CHECKS_DIR="${MONITOR_CONFIG_DIR}/checks" 6MONITOR_CONFIG_CHECKS_DIR = "${MONITOR_CONFIG_DIR}/checks"
7 7
8addtask monitor_install before do_package after do_install 8addtask monitor_install before do_package after do_install
9addtask monitor_clean before do_clean 9addtask monitor_clean before do_clean