[postgis-tickets] [SCM] PostGIS branch master updated. 3.1.0alpha2-119-gb01b7e7

git at osgeo.org git at osgeo.org
Fri Oct 30 05:37:18 PDT 2020


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "PostGIS".

The branch, master has been updated
       via  b01b7e7630096f3bed3eaf310f6340a802d30019 (commit)
      from  d48ac8bd216cedec2a4c13c720a5ce3b605b187d (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit b01b7e7630096f3bed3eaf310f6340a802d30019
Author: Sandro Santilli <strk at kbt.io>
Date:   Fri Oct 30 13:37:10 2020 +0100

    Fix fsync disabling

diff --git a/ci/berrie/pg_init_start.sh b/ci/berrie/pg_init_start.sh
index 6bc4a8e..44d45d5 100644
--- a/ci/berrie/pg_init_start.sh
+++ b/ci/berrie/pg_init_start.sh
@@ -13,7 +13,7 @@ export PGPORT=55432
 export PGDATA=$PGPATH/data_${PGPORT}
 export PGLOG="$PGDATA/pgsql.log"
 # What to use to start up the postmaster
-DAEMON="$PGPATH/bin/pg_ctl -D $PGDATA -o "-F" -l logfile start"
+DAEMON="$PGPATH/bin/pg_ctl -D $PGDATA -o '-F' -l logfile start"
 
 # What to use to shut down the postmaster
 PGCTL="$PGPATH/bin/pg_ctl"
diff --git a/ci/dronie/postgis_regress_alpine.sh b/ci/dronie/postgis_regress_alpine.sh
index dad522a..66a194f 100644
--- a/ci/dronie/postgis_regress_alpine.sh
+++ b/ci/dronie/postgis_regress_alpine.sh
@@ -3,7 +3,7 @@
 # Exit on first error
 set -e
 
-su - postgres -c "export PGDATA=/var/lib/postgresql/data && pg_ctl -l -o '-F' /var/lib/postgresql/data/pg.log start"
+su - postgres -c "export PGDATA=/var/lib/postgresql/data && pg_ctl -o '-F' -l /var/lib/postgresql/data/pg.log start"
 #export PGPORT=`grep ^port /var/lib/postgresql/postgresql.conf | awk '{print $3}'`
 export PGPORT=5432
 psql --version

-----------------------------------------------------------------------

Summary of changes:
 ci/berrie/pg_init_start.sh          | 2 +-
 ci/dronie/postgis_regress_alpine.sh | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list