summaryrefslogtreecommitdiffstats
path: root/molecule
diff options
context:
space:
mode:
authorAhmed AbdelHalim <[email protected]>2025-08-21 03:33:39 +0200
committerAhmed AbdelHalim <[email protected]>2025-08-21 03:33:39 +0200
commit2d9f8359f0592a30c0ba79a0d7dbdb5a9b82d868 (patch)
tree28e45623e608ea7e61063d8c562289c75f24f15d /molecule
parent276c1c4b49c13909ee6d62cc0bc020d5e6f2da80 (diff)
Fix the testing by adding the missing docker debian package
This package installs the networking.service, that is found on normal desktop/server setups and is required by the stricter network role to be disabled (instead of allowing failed_when: false relaxed condition)
Diffstat (limited to 'molecule')
-rw-r--r--molecule/default/Dockerfile.raspberrypi.j22
-rw-r--r--molecule/default/Dockerfile.ubuntu.j22
2 files changed, 2 insertions, 2 deletions
diff --git a/molecule/default/Dockerfile.raspberrypi.j2 b/molecule/default/Dockerfile.raspberrypi.j2
index 28bde7c8..aa620c58 100644
--- a/molecule/default/Dockerfile.raspberrypi.j2
+++ b/molecule/default/Dockerfile.raspberrypi.j2
@@ -8,7 +8,7 @@ ENV container docker
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
- systemd python3 avahi-daemon iproute2 \
+ systemd python3 avahi-daemon iproute2 ifupdown \
&& rm -Rf /var/lib/apt/lists/* \
&& rm -Rf /usr/share/doc \
&& rm -Rf /usr/share/man \
diff --git a/molecule/default/Dockerfile.ubuntu.j2 b/molecule/default/Dockerfile.ubuntu.j2
index c5bf53cc..37199b55 100644
--- a/molecule/default/Dockerfile.ubuntu.j2
+++ b/molecule/default/Dockerfile.ubuntu.j2
@@ -8,7 +8,7 @@ ENV container docker
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
- locales systemd avahi-daemon python3 iproute2 \
+ locales systemd avahi-daemon python3 iproute2 ifupdown \
&& rm -Rf /var/lib/apt/lists/* \
&& rm -Rf /usr/share/doc \
&& rm -Rf /usr/share/man \