Skip to content

Commit

Permalink
Use pcre2 lib instead of old pcre
Browse files Browse the repository at this point in the history
  • Loading branch information
dotneft committed Jan 22, 2022
1 parent edd6d8f commit 9b38269
Show file tree
Hide file tree
Showing 49 changed files with 51 additions and 35 deletions.
2 changes: 1 addition & 1 deletion Dockerfiles/agent/alpine/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ RUN set -eux && \
tzdata \
coreutils \
iputils \
pcre \
pcre2 \
libcurl \
libmodbus \
libldap" && \
Expand Down
2 changes: 1 addition & 1 deletion Dockerfiles/agent/centos/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ RUN set -eux && \
tini \
tzdata \
iputils \
pcre \
pcre2 \
libcurl-minimal \
openssl-libs \
zlib" && \
Expand Down
2 changes: 1 addition & 1 deletion Dockerfiles/agent/ol/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ RUN set -eux && \
tini \
tzdata \
iputils \
pcre \
pcre2 \
libcurl \
openssl-libs \
zlib" && \
Expand Down
2 changes: 1 addition & 1 deletion Dockerfiles/agent/rhel/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ RUN set -eux && \
tzdata \
iputils \
shadow-utils \
pcre \
pcre2 \
libcurl" && \
curl -sSL -o /tmp/epel-release-latest-8.noarch.rpm https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm && \
rpm -ivh /tmp/epel-release-latest-8.noarch.rpm && \
Expand Down
1 change: 1 addition & 0 deletions Dockerfiles/agent/ubuntu/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ RUN set -eux && \
libssl1.1 \
libcurl4 \
libmodbus5 \
libpcre2-8-0 \
libldap-2.4" && \
apt-get -y update && \
DEBIAN_FRONTEND=noninteractive apt-get -y \
Expand Down
2 changes: 1 addition & 1 deletion Dockerfiles/agent2/alpine/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ RUN set -eux && \
INSTALL_PKGS="tini \
tzdata \
bash \
pcre \
pcre2 \
coreutils \
smartmontools \
sudo \
Expand Down
2 changes: 1 addition & 1 deletion Dockerfiles/agent2/centos/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ RUN set -eux && \
tini \
tzdata \
iputils \
pcre \
pcre2 \
libcurl-minimal \
smartmontools \
sudo \
Expand Down
2 changes: 1 addition & 1 deletion Dockerfiles/agent2/ol/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ RUN set -eux && \
tini \
tzdata \
iputils \
pcre \
pcre2 \
libcurl \
smartmontools \
sudo \
Expand Down
2 changes: 1 addition & 1 deletion Dockerfiles/agent2/rhel/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ RUN set -eux && \
tzdata \
iputils \
shadow-utils \
pcre \
pcre2 \
smartmontools \
sudo \
libcurl" && \
Expand Down
1 change: 1 addition & 0 deletions Dockerfiles/agent2/ubuntu/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ RUN set -eux && \
sudo \
libssl1.1 \
libcurl4 \
libpcre2-8-0 \
libldap-2.4" && \
apt-get -y update && \
DEBIAN_FRONTEND=noninteractive apt-get -y \
Expand Down
2 changes: 1 addition & 1 deletion Dockerfiles/build-base/alpine/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ RUN set -eux && \
openipmi-dev \
openldap-dev \
openssl-dev \
pcre-dev \
pcre2-dev \
postgresql-dev \
openjdk8 \
gettext \
Expand Down
2 changes: 1 addition & 1 deletion Dockerfiles/build-base/centos/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ RUN set -eux && \
automake \
bash \
gcc \
pcre-devel \
pcre2-devel \
libcurl-devel \
libevent-devel \
libssh-devel \
Expand Down
2 changes: 1 addition & 1 deletion Dockerfiles/build-base/ol/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ RUN set -eux && \
automake \
bash \
gcc \
pcre-devel \
pcre2-devel \
libcurl-devel \
libevent-devel \
libssh-devel \
Expand Down
2 changes: 1 addition & 1 deletion Dockerfiles/build-base/rhel/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ RUN set -eux && \
automake \
bash \
gcc \
pcre-devel \
pcre2-devel \
libcurl-devel \
libevent-devel \
libssh-devel \
Expand Down
2 changes: 1 addition & 1 deletion Dockerfiles/build-base/ubuntu/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ RUN set -eux && \
libldap2-dev \
libmysqlclient-dev \
libopenipmi-dev \
libpcre3-dev \
libpcre2-dev \
libsnmp-dev \
libsqlite3-dev \
libpq-dev \
Expand Down
1 change: 1 addition & 0 deletions Dockerfiles/build-mysql/alpine/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ RUN set -eux && \
--with-ldap \
--with-libcurl \
--with-libmodbus \
--with-libpcre2 \
--with-libxml2 \
--with-mysql \
--with-net-snmp \
Expand Down
1 change: 1 addition & 0 deletions Dockerfiles/build-mysql/centos/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ RUN set -eux && \
--with-ldap \
--with-libcurl \
# --with-libmodbus \
--with-libpcre2 \
--with-libxml2 \
--with-mysql \
--with-net-snmp \
Expand Down
1 change: 1 addition & 0 deletions Dockerfiles/build-mysql/ol/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ RUN set -eux && \
--with-ldap \
--with-libcurl \
# --with-libmodbus \
--with-libpcre2 \
--with-libxml2 \
--with-mysql \
--with-net-snmp \
Expand Down
1 change: 1 addition & 0 deletions Dockerfiles/build-mysql/rhel/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ RUN set -eux && \
--with-ldap \
--with-libcurl \
# --with-libmodbus \
--with-libpcre2 \
--with-libxml2 \
--with-mysql \
--with-net-snmp \
Expand Down
1 change: 1 addition & 0 deletions Dockerfiles/build-mysql/ubuntu/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ RUN set -eux && \
--with-ldap \
--with-libcurl \
--with-libmodbus \
--with-libpcre2 \
--with-libxml2 \
--with-mysql \
--with-net-snmp \
Expand Down
1 change: 1 addition & 0 deletions Dockerfiles/build-pgsql/alpine/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ RUN set -eux && \
--with-ldap \
--with-libcurl \
--with-libmodbus \
--with-libpcre2 \
--with-libxml2 \
--with-net-snmp \
--with-openipmi \
Expand Down
1 change: 1 addition & 0 deletions Dockerfiles/build-pgsql/centos/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ RUN set -eux && \
--with-ldap \
--with-libcurl \
# --with-libmodbus \
--with-libpcre2 \
--with-libxml2 \
--with-net-snmp \
--with-openipmi \
Expand Down
1 change: 1 addition & 0 deletions Dockerfiles/build-pgsql/ol/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ RUN set -eux && \
--with-ldap \
--with-libcurl \
# --with-libmodbus \
--with-libpcre2 \
--with-libxml2 \
--with-net-snmp \
--with-openipmi \
Expand Down
1 change: 1 addition & 0 deletions Dockerfiles/build-pgsql/ubuntu/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ RUN set -eux && \
--with-ldap \
--with-libcurl \
--with-libmodbus \
--with-libpcre2 \
--with-libxml2 \
--with-net-snmp \
--with-openipmi \
Expand Down
1 change: 1 addition & 0 deletions Dockerfiles/build-sqlite3/alpine/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ RUN set -eux && \
--with-ldap \
--with-libcurl \
--with-libmodbus \
--with-libpcre2 \
--with-libxml2 \
--with-net-snmp \
--with-openipmi \
Expand Down
1 change: 1 addition & 0 deletions Dockerfiles/build-sqlite3/centos/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ RUN set -eux && \
--with-ldap \
--with-libcurl \
# --with-libmodbus \
--with-libpcre2 \
--with-libxml2 \
--with-net-snmp \
--with-openipmi \
Expand Down
1 change: 1 addition & 0 deletions Dockerfiles/build-sqlite3/ol/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ RUN set -eux && \
--with-ldap \
--with-libcurl \
# --with-libmodbus \
--with-libpcre2 \
--with-libxml2 \
--with-net-snmp \
--with-openipmi \
Expand Down
1 change: 1 addition & 0 deletions Dockerfiles/build-sqlite3/rhel/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ RUN set -eux && \
--with-ldap \
--with-libcurl \
# --with-libmodbus \
--with-libpcre2 \
--with-libxml2 \
--with-net-snmp \
--with-openipmi \
Expand Down
1 change: 1 addition & 0 deletions Dockerfiles/build-sqlite3/ubuntu/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ RUN set -eux && \
--with-ldap \
--with-libcurl \
--with-libmodbus \
--with-libpcre2 \
--with-libxml2 \
--with-net-snmp \
--with-openipmi \
Expand Down
2 changes: 1 addition & 1 deletion Dockerfiles/proxy-mysql/alpine/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ RUN set -eux && \
mariadb-connector-c \
net-snmp-agent-libs \
openipmi-libs \
pcre \
pcre2 \
unixodbc \
fping" && \
apk add \
Expand Down
2 changes: 1 addition & 1 deletion Dockerfiles/proxy-mysql/centos/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ RUN set -eux && \
OpenIPMI-libs \
openldap \
openssl-libs \
pcre \
pcre2 \
zlib \
unixODBC" && \
dnf -y module enable mysql && \
Expand Down
2 changes: 1 addition & 1 deletion Dockerfiles/proxy-mysql/ol/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ RUN set -eux && \
OpenIPMI-libs \
openldap \
openssl-libs \
pcre \
pcre2 \
zlib \
unixODBC" && \
microdnf -y module enable mysql && \
Expand Down
2 changes: 1 addition & 1 deletion Dockerfiles/proxy-mysql/rhel/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ RUN set -eux && \
mysql-libs \
net-snmp-agent-libs \
OpenIPMI-libs \
pcre \
pcre2 \
unixODBC" && \
curl -sSL -o /tmp/epel-release-latest-8.noarch.rpm https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm && \
rpm -ivh /tmp/epel-release-latest-8.noarch.rpm && \
Expand Down
2 changes: 1 addition & 1 deletion Dockerfiles/proxy-mysql/ubuntu/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ RUN set -eux && \
libevent-2.1 \
libmysqlclient21 \
libopenipmi0 \
libpcre3 \
libpcre2-8-0 \
libsnmp35 \
libssh-4 \
libssl1.1 \
Expand Down
2 changes: 1 addition & 1 deletion Dockerfiles/proxy-sqlite3/alpine/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ RUN set -eux && \
libxml2 \
net-snmp-agent-libs \
openipmi-libs \
pcre \
pcre2 \
sqlite-libs \
unixodbc" && \
apk add \
Expand Down
2 changes: 1 addition & 1 deletion Dockerfiles/proxy-sqlite3/centos/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ RUN set -eux && \
OpenIPMI-libs \
openldap \
openssl-libs \
pcre \
pcre2 \
zlib \
unixODBC" && \
dnf -y install epel-release && \
Expand Down
2 changes: 1 addition & 1 deletion Dockerfiles/proxy-sqlite3/ol/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ RUN set -eux && \
OpenIPMI-libs \
openldap \
openssl-libs \
pcre \
pcre2 \
zlib \
unixODBC" && \
microdnf -y install \
Expand Down
2 changes: 1 addition & 1 deletion Dockerfiles/proxy-sqlite3/rhel/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ RUN set -eux && \
libxml2 \
net-snmp-agent-libs \
OpenIPMI-libs \
pcre \
pcre2 \
sqlite-libs \
unixODBC" && \
curl -sSL -o /tmp/epel-release-latest-8.noarch.rpm https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm && \
Expand Down
2 changes: 1 addition & 1 deletion Dockerfiles/proxy-sqlite3/ubuntu/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ RUN set -eux && \
libcurl4 \
libevent-2.1 \
libopenipmi0 \
libpcre3 \
libpcre2-8-0 \
libsnmp35 \
libsqlite3-0 \
libssh-4 \
Expand Down
2 changes: 1 addition & 1 deletion Dockerfiles/server-mysql/alpine/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ RUN set -eux && \
mariadb-connector-c \
net-snmp-agent-libs \
openipmi-libs \
pcre \
pcre2 \
unixodbc" && \
apk add \
--no-cache \
Expand Down
2 changes: 1 addition & 1 deletion Dockerfiles/server-mysql/centos/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ RUN set -eux && \
OpenIPMI-libs \
openldap \
openssl-libs \
pcre \
pcre2 \
zlib \
unixODBC" && \
dnf -y module enable mysql && \
Expand Down
2 changes: 1 addition & 1 deletion Dockerfiles/server-mysql/ol/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ RUN set -eux && \
OpenIPMI-libs \
openldap \
openssl-libs \
pcre \
pcre2 \
zlib \
unixODBC" && \
microdnf -y module enable mysql && \
Expand Down
2 changes: 1 addition & 1 deletion Dockerfiles/server-mysql/rhel/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ RUN set -eux && \
mysql-libs \
net-snmp-agent-libs \
OpenIPMI-libs \
pcre \
pcre2 \
unixODBC" && \
curl -sSL -o /tmp/epel-release-latest-8.noarch.rpm https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm && \
rpm -ivh /tmp/epel-release-latest-8.noarch.rpm && \
Expand Down
2 changes: 1 addition & 1 deletion Dockerfiles/server-mysql/ubuntu/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ RUN set -eux && \
libevent-2.1 \
libmysqlclient21 \
libopenipmi0 \
libpcre3 \
libpcre2-8-0 \
libsnmp35 \
libssh-4 \
libssl1.1 \
Expand Down
2 changes: 1 addition & 1 deletion Dockerfiles/server-pgsql/alpine/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ RUN set -eux && \
libxml2 \
net-snmp-agent-libs \
openipmi-libs \
pcre \
pcre2 \
postgresql-client \
postgresql-libs \
unixodbc" && \
Expand Down
2 changes: 1 addition & 1 deletion Dockerfiles/server-pgsql/centos/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ RUN set -eux && \
OpenIPMI-libs \
openldap \
openssl-libs \
pcre \
pcre2 \
postgresql \
postgresql-libs \
zlib \
Expand Down
Loading

0 comments on commit 9b38269

Please sign in to comment.