From 80df884533d29dd4e215788a0f62d8b8cb9a83af Mon Sep 17 00:00:00 2001 From: Luiz Fernando Bosso Date: Thu, 18 Nov 2021 20:55:51 -0300 Subject: [PATCH] Update PCRE ftp url (#468) --- CHANGELOG.md | 6 ++++++ tasks/opensource/install-source.yml | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 18e95bd..ac6c67d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## 0.21.4 (Unreleased) + +BUG FIXES: + +When building NGINX from source, the original source FTP repository `ftp.pcre.org` is not available anymore, according to . The FTP repository has been updated to use `ftp.exim.org` instead. + ## 0.21.3 (October 25, 2021) ENHANCEMENTS: diff --git a/tasks/opensource/install-source.yml b/tasks/opensource/install-source.yml index f8aae2f..a50d768 100644 --- a/tasks/opensource/install-source.yml +++ b/tasks/opensource/install-source.yml @@ -127,7 +127,7 @@ block: - name: Download PCRE dependency get_url: - url: "https://ftp.pcre.org/pub/pcre/{{ pcre_version }}.tar.gz" + url: "https://ftp.exim.org/pub/pcre/{{ pcre_version }}.tar.gz" dest: "/tmp/{{ pcre_version }}.tar.gz" mode: 0600 register: pcre_source