From e6c136dbf5f90cf85799549171ffcf39ab317b11 Mon Sep 17 00:00:00 2001 From: Andrea Bolognani Date: Tue, 30 Jun 2026 13:40:18 +0200 Subject: [PATCH] mkosi: Use Debian stable Debian testing, which is the mkosi default, cannot be installed right now: we get errors such as Setting access ACL "u::rwx,g::r-x,g:adm:r-x,m::r-x,o::r-x" on /var/log/journal failed: Invalid argument for systemd and a couple other packages; the installation fails as a result, and the mkosi job is aborted. While we try to figure out what the proper fix is and where it should land (Debian? mkosi? somewhere else?), switch to Debian stable, which is not affected by the issue and makes for a reasonable test target anyway. Signed-off-by: Andrea Bolognani --- mkosi/mkosi.conf | 2 ++ mkosi/mkosi.conf.d/debian/mkosi.conf | 5 +++++ 2 files changed, 7 insertions(+) create mode 100644 mkosi/mkosi.conf.d/debian/mkosi.conf diff --git a/mkosi/mkosi.conf b/mkosi/mkosi.conf index 496efbb02..7020e30e6 100644 --- a/mkosi/mkosi.conf +++ b/mkosi/mkosi.conf @@ -8,6 +8,8 @@ OutputDirectory=mkosi.output [Build] History=yes ToolsTree=default +ToolsTreeDistribution=debian +ToolsTreeRelease=stable BuildDirectory=mkosi.builddir CacheDirectory=mkosi.cache Incremental=yes diff --git a/mkosi/mkosi.conf.d/debian/mkosi.conf b/mkosi/mkosi.conf.d/debian/mkosi.conf new file mode 100644 index 000000000..cf71c74de --- /dev/null +++ b/mkosi/mkosi.conf.d/debian/mkosi.conf @@ -0,0 +1,5 @@ +[Match] +Distribution=|debian + +[Distribution] +Release=stable