From 336e1eb674e18ea3996bc2caf18e98fd649e66a5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20BEAU?= Date: Thu, 26 Feb 2015 11:54:10 +0100 Subject: [PATCH] [FIX] fix wrong file for testing if postgresql is installed. Indeed /etc/init.d/postgresql in installed by the package postgresql-common and this package already exist in cedar14 --- stack/addons/postgresql/bin/configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stack/addons/postgresql/bin/configure b/stack/addons/postgresql/bin/configure index 5b145b2..b1691a2 100755 --- a/stack/addons/postgresql/bin/configure +++ b/stack/addons/postgresql/bin/configure @@ -4,7 +4,7 @@ set -e # fail fast set -o pipefail # dont ignore exit codes when piping output # set -x # enable debugging -if ! [ -f /etc/init.d/postgresql ]; then +if ! [ -f /usr/lib/postgresql/9.3/bin/postgresql ]; then echo "-----> [postgres] Installing server" ( sudo apt-get update -q &&