summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBabak Sarashki <babak.sarashki@windriver.com>2020-05-29 12:41:29 -0700
committerBruce Ashfield <bruce.ashfield@gmail.com>2020-06-01 22:31:41 -0400
commit8516070112019bd7b3a5c41eb55a042808a13089 (patch)
tree8ed0b663f892cef8e73c79139d72b85a09d4324e
parent157ca6fe949d8ef7bb1a589b20e8e85f014c6b89 (diff)
downloadmeta-cloud-services-8516070112019bd7b3a5c41eb55a042808a13089.tar.gz
postgresql: Fix install error on non existent file
Commit 103939fec ("postgresql: Allow successful run of postgresql-setup") renamed .bash_profile to .profile. This commit reflects the file rename. Signed-off-by: Babak Sarashki <babak.sarashki@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
-rw-r--r--meta-openstack/recipes-dbs/postgresql/postgresql_openstack.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-openstack/recipes-dbs/postgresql/postgresql_openstack.inc b/meta-openstack/recipes-dbs/postgresql/postgresql_openstack.inc
index b6a9c3c..3de5845 100644
--- a/meta-openstack/recipes-dbs/postgresql/postgresql_openstack.inc
+++ b/meta-openstack/recipes-dbs/postgresql/postgresql_openstack.inc
@@ -35,7 +35,7 @@ do_install_append() {
35 sed -e "s:%SYSCONFIGDIR%:${sysconfdir}:g" -i ${PG_INIT_SERVICE_FILE} 35 sed -e "s:%SYSCONFIGDIR%:${sysconfdir}:g" -i ${PG_INIT_SERVICE_FILE}
36 36
37 # Update PGDATA throughout 37 # Update PGDATA throughout
38 files="${D}${localstatedir}/lib/${BPN}/.bash_profile" 38 files="${D}${localstatedir}/lib/${BPN}/.profile"
39 files="$files ${D}${systemd_unitdir}/system/postgresql.service" 39 files="$files ${D}${systemd_unitdir}/system/postgresql.service"
40 files="$files ${D}${bindir}/${BPN}-setup" 40 files="$files ${D}${bindir}/${BPN}-setup"
41 files="$files ${D}${sysconfdir}/init.d/${BPN}-server" 41 files="$files ${D}${sysconfdir}/init.d/${BPN}-server"