From 527352ce6973eca705ab90d37ac4e79cd3d2662e Mon Sep 17 00:00:00 2001 From: joe Date: Wed, 13 Aug 2025 14:09:45 -0700 Subject: [PATCH] Implement bubblewrap integration for apt-ostree - Add BubblewrapContainer for secure package operations in staging deployments - Implement ContainerMutability levels (Immutable, RoFiles, MutateFreely) - Integrate bubblewrap with apt commands (install, remove, upgrade, update) - Use bubblewrap instead of chroot for better security (following rpm-ostree pattern) - Add bubblewrap dependency to debian/control - Update ostree_integration.rs with actual package operation capabilities --- debian/control | 1 + 1 file changed, 1 insertion(+) diff --git a/debian/control b/debian/control index f68c3676..db613db0 100644 --- a/debian/control +++ b/debian/control @@ -28,6 +28,7 @@ Depends: ${shlibs:Depends}, ostree, systemd, libapt-pkg7.0 (>= 3.0.0) +, Description: Debian/Ubuntu equivalent of rpm-ostree apt-ostree is a tool for managing atomic, immutable deployments on Debian and Ubuntu systems using OSTree as the backend.