From 9fb6be6f9cf0709862bc76f93f0105e04f9cac6d Mon Sep 17 00:00:00 2001 From: Andrew Ruthven Date: Sun, 6 Feb 2022 13:57:07 +1300 Subject: [PATCH] Debian Bullseye has PostgreSQL 13. --- .gitlab-ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index aedb6ae3..c8204055 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -213,13 +213,13 @@ test_bullseye_latestphp: - ln -s /etc/davical/regression-conf.php /etc/davical/myempty-conf.php - mkdir -p /var/log/davical - chown www-data /var/log/davical - - sed -i '/peer/d' /etc/postgresql/11/main/pg_hba.conf - - echo 'local all all trust' >> /etc/postgresql/11/main/pg_hba.conf - - pg_ctlcluster 11 main start + - sed -i '/peer/d' /etc/postgresql/13/main/pg_hba.conf + - echo 'local all all trust' >> /etc/postgresql/13/main/pg_hba.conf + - pg_ctlcluster 13 main start - su postgres -c 'createuser davical_dba --createdb --createrole --superuser' - su postgres -c 'createuser davical_app --superuser' - su postgres -c 'createuser testrunner --superuser' - - pg_ctlcluster 11 main restart + - pg_ctlcluster 13 main restart - a2enmod rewrite - apache2ctl start - useradd testrunner