summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorXulin Sun <xulin.sun@windriver.com>2016-05-19 15:47:04 +0800
committerBruce Ashfield <bruce.ashfield@windriver.com>2016-05-20 12:31:21 -0400
commit83787f9e406922f866f9678679c59c3eac328c23 (patch)
treede75d248ceb91903b18266a37d960ee701d45b44
parent4b15072ef54c570c0aee729abfb420c78a981ebc (diff)
downloadmeta-cloud-services-83787f9e406922f866f9678679c59c3eac328c23.tar.gz
cloud-init: fix installed-vs-shipped issue by creating a separate package
This solves the following issue by creating a separate package to put the below files: QA Issue: cloud-init: Files/directories were installed but not shipped in any package: /lib /lib/systemd /lib/systemd/system /lib/systemd/system/cloud-init.service /lib/systemd/system/cloud-config.target /lib/systemd/system/cloud-config.service /lib/systemd/system/cloud-init-local.service /lib/systemd/system/cloud-final.service Signed-off-by: Xulin Sun <xulin.sun@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
-rw-r--r--meta-openstack/recipes-extended/cloud-init/cloud-init_0.7.6.bb4
1 files changed, 4 insertions, 0 deletions
diff --git a/meta-openstack/recipes-extended/cloud-init/cloud-init_0.7.6.bb b/meta-openstack/recipes-extended/cloud-init/cloud-init_0.7.6.bb
index ea6752c..457ff93 100644
--- a/meta-openstack/recipes-extended/cloud-init/cloud-init_0.7.6.bb
+++ b/meta-openstack/recipes-extended/cloud-init/cloud-init_0.7.6.bb
@@ -42,9 +42,13 @@ CHEF_SERVICES_CONF_FILES := " \
42 ${sysconfdir}/cloud/cloud.cfg \ 42 ${sysconfdir}/cloud/cloud.cfg \
43 " 43 "
44 44
45PACKAGES += "${PN}-systemd"
46
45FILES_${PN} += "${sysconfdir}/* \ 47FILES_${PN} += "${sysconfdir}/* \
46 ${datadir}/*" 48 ${datadir}/*"
47 49
50FILES_${PN}-systemd += "${systemd_unitdir}/*"
51
48INITSCRIPT_PACKAGES = "${PN}" 52INITSCRIPT_PACKAGES = "${PN}"
49INITSCRIPT_NAME_${BPN} = "cloud-init" 53INITSCRIPT_NAME_${BPN} = "cloud-init"
50 54