From d957227d40b4bdb93a74be8756c9639da38b04c9 Mon Sep 17 00:00:00 2001 From: Disassembler Date: Fri, 14 Sep 2018 15:58:10 +0200 Subject: [PATCH] Fix --- basic/etc/postfix/{conf => }/main.cf | 0 postgres/setup.sh | 1 + setup-all.sh | 16 ++++++++-------- 3 files changed, 9 insertions(+), 8 deletions(-) rename basic/etc/postfix/{conf => }/main.cf (100%) diff --git a/basic/etc/postfix/conf/main.cf b/basic/etc/postfix/main.cf similarity index 100% rename from basic/etc/postfix/conf/main.cf rename to basic/etc/postfix/main.cf diff --git a/postgres/setup.sh b/postgres/setup.sh index 18d7429..acddf27 100755 --- a/postgres/setup.sh +++ b/postgres/setup.sh @@ -12,6 +12,7 @@ lxc-execute -n postgres -- initdb -D /var/lib/postgresql # Configure Postgres cp ${SOURCE_DIR}/srv/postgres/data/postgresql.conf /srv/postgres/data/postgresql.conf cp ${SOURCE_DIR}/srv/postgres/data/pg_hba.conf /srv/postgres/data/pg_hba.conf + # Enable query logging. Only if the DEBUG environment variable is set if [ ${DEBUG:-0} -eq 1 ]; then sed -i 's/^#log_destination/log_destination/' /srv/postgres/data/postgresql.conf diff --git a/setup-all.sh b/setup-all.sh index cfe92e4..497f5aa 100755 --- a/setup-all.sh +++ b/setup-all.sh @@ -21,11 +21,11 @@ ${SOURCE_DIR}/gnuhealth/setup.sh ${SOURCE_DIR}/kanboard/setup.sh ${SOURCE_DIR}/opendatakit/setup.sh ${SOURCE_DIR}/opendatakit-build/setup.sh -#${SOURCE_DIR}/openmapkit/setup.sh -#${SOURCE_DIR}/pandora/setup.sh -#${SOURCE_DIR}/sahana/setup.sh -#${SOURCE_DIR}/sahana-demo/setup.sh -#${SOURCE_DIR}/sambro/setup.sh -#${SOURCE_DIR}/seeddms/setup.sh -#${SOURCE_DIR}/sigmah/setup.sh -#${SOURCE_DIR}/ushahidi/setup.sh +${SOURCE_DIR}/openmapkit/setup.sh +${SOURCE_DIR}/pandora/setup.sh +${SOURCE_DIR}/sahana/setup.sh +${SOURCE_DIR}/sahana-demo/setup.sh +${SOURCE_DIR}/sambro/setup.sh +${SOURCE_DIR}/seeddms/setup.sh +${SOURCE_DIR}/sigmah/setup.sh +${SOURCE_DIR}/ushahidi/setup.sh