File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed
build/ansible/group_vars/all Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 13
13
- FIxed installation of drupalconsole [ #246 ] ( https://github.com/devilbox/docker-php-fpm/pull/246 )
14
14
- Fixed installation of symfoni cli [ #247 ] ( https://github.com/devilbox/docker-php-fpm/pull/247 )
15
15
- Fixed installation of NodeJS
16
- - Fixed PostgreSQL client for PHP 5.6
16
+ - Fixed installation of PostgreSQL client for PHP 5.6
17
+ - Fixed installation of PostgreSQL client for PHP 7.0
17
18
18
19
19
20
## Release 0.141
Original file line number Diff line number Diff line change @@ -195,7 +195,7 @@ RUN set -eux \
195
195
# -------------------- pgsql_client --------------------
196
196
&& if [ "$(dpkg-architecture --query DEB_BUILD_ARCH)" = "amd64" ]; then \
197
197
curl -sS -k -L --fail https://www.postgresql.org/media/keys/ACCC4CF8.asc | APT_KEY_DONT_WARN_ON_DANGEROUS_USAGE=1 apt-key add - \
198
- && echo "deb http ://apt.postgresql.org/pub/repos/apt/ stretch-pgdg main" > /etc/apt/sources.list.d/pgsql.list \
198
+ && echo "deb https ://apt-archive .postgresql.org/pub/repos/apt/ stretch-pgdg main" > /etc/apt/sources.list.d/pgsql.list \
199
199
&& apt-get update; \
200
200
fi \
201
201
\
Original file line number Diff line number Diff line change @@ -330,8 +330,7 @@ apt_repositories_available:
330
330
deb : deb https://apt-archive.postgresql.org/pub/repos/apt/ {{ os_release[5.6].debian }}-pgdg main
331
331
# [Stretch]
332
332
7.0 :
333
- deb : deb http://apt.postgresql.org/pub/repos/apt/ {{ os_release[7.0].debian }}-pgdg main
334
- pre : curl -sS -k -L --fail https://www.postgresql.org/media/keys/ACCC4CF8.asc | APT_KEY_DONT_WARN_ON_DANGEROUS_USAGE=1 apt-key add -
333
+ deb : deb https://apt-archive.postgresql.org/pub/repos/apt/ {{ os_release[7.0].debian }}-pgdg main
335
334
# [Buster]
336
335
7.1 :
337
336
deb : deb http://apt.postgresql.org/pub/repos/apt/ {{ os_release[7.1].debian }}-pgdg main
@@ -817,7 +816,7 @@ software_available:
817
816
pre : |
818
817
if [ "$(dpkg-architecture --query DEB_BUILD_ARCH)" = "amd64" ]; then \
819
818
curl -sS -k -L --fail https://www.postgresql.org/media/keys/ACCC4CF8.asc | APT_KEY_DONT_WARN_ON_DANGEROUS_USAGE=1 apt-key add - \
820
- && echo "deb http ://apt.postgresql.org/pub/repos/apt/ {{ os_release[php_version].debian }}-pgdg main" > /etc/apt/sources.list.d/pgsql.list \
819
+ && echo "deb https ://apt-archive .postgresql.org/pub/repos/apt/ {{ os_release[php_version].debian }}-pgdg main" > /etc/apt/sources.list.d/pgsql.list \
821
820
&& apt-get update; \
822
821
fi \
823
822
command : |
You can’t perform that action at this time.
0 commit comments