Skip to content

Commit 09dff4f

Browse files
committed
consolidate dns plugins, add lxml deps
1 parent 0ffa850 commit 09dff4f

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

Dockerfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ RUN \
1818
g++ \
1919
gcc \
2020
libffi-dev \
21+
libxml2-dev \
22+
libxslt-dev \
2123
openssl-dev \
2224
python3-dev && \
2325
echo "**** install runtime packages ****" && \

Dockerfile.aarch64

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ RUN \
1818
g++ \
1919
gcc \
2020
libffi-dev \
21+
libxml2-dev \
22+
libxslt-dev \
2123
openssl-dev \
2224
python3-dev && \
2325
echo "**** install runtime packages ****" && \

Dockerfile.armhf

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ RUN \
1818
g++ \
1919
gcc \
2020
libffi-dev \
21+
libxml2-dev \
22+
libxslt-dev \
2123
openssl-dev \
2224
python3-dev && \
2325
echo "**** install runtime packages ****" && \

root/etc/cont-init.d/50-config

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -236,10 +236,7 @@ if [ "$VALIDATION" = "dns" ]; then
236236
elif [[ "$DNSPLUGIN" =~ ^(google)$ ]]; then
237237
if [ -n "$PROPAGATION" ];then PROPAGATIONPARAM="--dns-${DNSPLUGIN}-propagation-seconds ${PROPAGATION}"; fi
238238
PREFCHAL="--dns-${DNSPLUGIN} --dns-${DNSPLUGIN}-credentials /config/dns-conf/${DNSPLUGIN}.json ${PROPAGATIONPARAM}"
239-
elif [[ "$DNSPLUGIN" =~ ^(he)$ ]]; then
240-
if [ -n "$PROPAGATION" ];then PROPAGATIONPARAM="--dns-${DNSPLUGIN}-propagation-seconds ${PROPAGATION}"; fi
241-
PREFCHAL="-a dns-${DNSPLUGIN} --dns-${DNSPLUGIN}-credentials /config/dns-conf/${DNSPLUGIN}.ini ${PROPAGATIONPARAM}"
242-
elif [[ "$DNSPLUGIN" =~ ^(aliyun|domeneshop|hetzner|inwx|ionos|netcup|njalla|transip|vultr)$ ]]; then
239+
elif [[ "$DNSPLUGIN" =~ ^(aliyun|domeneshop|he|hetzner|inwx|ionos|netcup|njalla|transip|vultr)$ ]]; then
243240
if [ -n "$PROPAGATION" ];then PROPAGATIONPARAM="--dns-${DNSPLUGIN}-propagation-seconds ${PROPAGATION}"; fi
244241
PREFCHAL="-a dns-${DNSPLUGIN} --dns-${DNSPLUGIN}-credentials /config/dns-conf/${DNSPLUGIN}.ini ${PROPAGATIONPARAM}"
245242
elif [[ "$DNSPLUGIN" =~ ^(directadmin)$ ]]; then

0 commit comments

Comments
 (0)