From 43507aa6286e6cd5731c36dc6c51e2d4c926ecdb Mon Sep 17 00:00:00 2001 From: Jo Zzsi Date: Wed, 23 Oct 2024 21:09:05 -0400 Subject: [PATCH] ci: add systemd-repart to Debian/Ubuntu rolling --- test/container/Dockerfile-debian | 1 + test/container/Dockerfile-ubuntu | 1 + 2 files changed, 2 insertions(+) diff --git a/test/container/Dockerfile-debian b/test/container/Dockerfile-debian index 0f65c5c01..cd91bc6f8 100644 --- a/test/container/Dockerfile-debian +++ b/test/container/Dockerfile-debian @@ -15,6 +15,7 @@ RUN apt-get update -y -qq && apt-get upgrade -y -qq && apt-get install -y -qq -- RUN if [ "$DISTRIBUTION" = "debian:sid" ] ; then \ DEBIAN_FRONTEND=noninteractive apt-get install -y -qq --no-install-recommends -o Dpkg::Use-Pty=0 \ systemd-cryptsetup \ + systemd-repart \ ; fi RUN \ diff --git a/test/container/Dockerfile-ubuntu b/test/container/Dockerfile-ubuntu index ed0215c81..f3c04552d 100644 --- a/test/container/Dockerfile-ubuntu +++ b/test/container/Dockerfile-ubuntu @@ -15,6 +15,7 @@ RUN apt-get update -y -qq && apt-get upgrade -y -qq RUN if [ "${DISTRIBUTION}" = "ubuntu:rolling" ] ; then \ DEBIAN_FRONTEND=noninteractive apt-get install -y -qq --no-install-recommends -o Dpkg::Use-Pty=0 \ systemd-cryptsetup \ + systemd-repart \ ; fi RUN \