summaryrefslogtreecommitdiffstats
path: root/meta-openstack/recipes-support
diff options
context:
space:
mode:
Diffstat (limited to 'meta-openstack/recipes-support')
-rw-r--r--meta-openstack/recipes-support/postgresql/postgresql_9.%.bbappend14
1 files changed, 6 insertions, 8 deletions
diff --git a/meta-openstack/recipes-support/postgresql/postgresql_9.%.bbappend b/meta-openstack/recipes-support/postgresql/postgresql_9.%.bbappend
index 22dae71..b26054e 100644
--- a/meta-openstack/recipes-support/postgresql/postgresql_9.%.bbappend
+++ b/meta-openstack/recipes-support/postgresql/postgresql_9.%.bbappend
@@ -41,14 +41,12 @@ ALLOW_EMPTY_${PN}-setup = "1"
41 41
42pkg_postinst_${PN}-setup () { 42pkg_postinst_${PN}-setup () {
43 # postgres 9.2.4 postinst 43 # postgres 9.2.4 postinst
44 if [ "x$D" != "x" ]; then 44 if [ -z "$D" ]; then
45 exit 1 45 /etc/init.d/postgresql-init
46 fi 46 if [ $? -ne 0 ]; then
47 47 echo "[ERROR] postgres: unable to create admin account"
48 /etc/init.d/postgresql-init 48 exit 1
49 if [ $? -ne 0 ]; then 49 fi
50 echo "[ERROR] postgres: unable to create admin account"
51 exit 1
52 fi 50 fi
53} 51}
54 52