summaryrefslogtreecommitdiffstats
path: root/meta-openstack/recipes-devtools/python
diff options
context:
space:
mode:
Diffstat (limited to 'meta-openstack/recipes-devtools/python')
-rw-r--r--meta-openstack/recipes-devtools/python/python-keystone_2013.1.bb14
1 files changed, 12 insertions, 2 deletions
diff --git a/meta-openstack/recipes-devtools/python/python-keystone_2013.1.bb b/meta-openstack/recipes-devtools/python/python-keystone_2013.1.bb
index 5bc772f..b543b13 100644
--- a/meta-openstack/recipes-devtools/python/python-keystone_2013.1.bb
+++ b/meta-openstack/recipes-devtools/python/python-keystone_2013.1.bb
@@ -40,7 +40,8 @@ do_install_append() {
40 touch ${KEYSTONE_CONF_DIR}/keystone.db 40 touch ${KEYSTONE_CONF_DIR}/keystone.db
41} 41}
42 42
43pkg_postinst_${PN} () { 43pkg_postinst_${SRCNAME} () {
44
44 if [ "x$D" != "x" ]; then 45 if [ "x$D" != "x" ]; then
45 exit 1 46 exit 1
46 fi 47 fi
@@ -56,7 +57,13 @@ pkg_postinst_${PN} () {
56 bash /etc/keystone/identity.sh 57 bash /etc/keystone/identity.sh
57} 58}
58 59
59FILES_${PN} += "${sysconfdir}/${SRCNAME}/*" 60PACKAGES += " ${SRCNAME}"
61
62FILES_${PN} = "${libdir}/*"
63
64FILES_${SRCNAME} = "${bindir}/* \
65 ${sysconfdir}/${SRCNAME}/* \
66 ${sysconfdir}/init.d/* "
60 67
61RDEPENDS_${PN} += "python-pam \ 68RDEPENDS_${PN} += "python-pam \
62 python-webob \ 69 python-webob \
@@ -73,3 +80,6 @@ RDEPENDS_${PN} += "python-pam \
73 python-keystoneclient \ 80 python-keystoneclient \
74 python-oslo.config \ 81 python-oslo.config \
75 " 82 "
83
84RDEPENDS_${SRCNAME} = "${PN} \
85 postgresql postgresql-client python-psycopg2"