From 8d2cb1d9a1aef0154891aaedf58668d8558b64fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Antoine=20Beaupr=C3=A9?= Date: Wed, 3 Sep 2025 16:26:24 -0400 Subject: [PATCH] fix Debian package dependencies cgroupfs-mount was removed from Debian trixie and I am not aware of it really being required in bookworm either. --- manifests/params.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifests/params.pp b/manifests/params.pp index c7d1e115..6e6f9143 100644 --- a/manifests/params.pp +++ b/manifests/params.pp @@ -365,7 +365,7 @@ # https://github.com/docker/docker/issues/4734 $prerequired_packages = $facts['os']['family'] ? { 'Debian' => $facts['os']['name'] ? { - 'Debian' => ['cgroupfs-mount',], + 'Debian' => ['apparmor',], 'Ubuntu' => ['cgroup-lite', 'apparmor',], default => [], },