From 5dec08769e026980e3b5d3217dbbe2ebd87bf33c Mon Sep 17 00:00:00 2001 From: Jeremy Puhlman Date: Tue, 6 Nov 2018 13:58:21 -0800 Subject: postgresql: Fix issue where init script is not found. layers/meta-cloud-services/meta-openstack/recipes-dbs/postgresql/defaultpkgname/ Something changed with the evaluation of :=, such that PN evaluates to defaultpkgname, thus the initscript is not found. Just set it to the correct name. Signed-off-by: Jeremy Puhlman Signed-off-by: Bruce Ashfield --- meta-openstack/recipes-dbs/postgresql/postgresql_openstack.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-openstack/recipes-dbs/postgresql/postgresql_openstack.inc b/meta-openstack/recipes-dbs/postgresql/postgresql_openstack.inc index 5bf25e1..b6a9c3c 100644 --- a/meta-openstack/recipes-dbs/postgresql/postgresql_openstack.inc +++ b/meta-openstack/recipes-dbs/postgresql/postgresql_openstack.inc @@ -1,4 +1,4 @@ -FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:" +FILESEXTRAPATHS_prepend := "${THISDIR}/postgresql:" SRC_URI += " \ file://postgresql-init \ -- cgit v1.2.3-54-g00ecf