]> git.ipfire.org Git - thirdparty/mkosi.git/commitdiff
ubuntu: Switch to devel as the default release
authorDaan De Meyer <daan.j.demeyer@gmail.com>
Wed, 15 Oct 2025 10:58:40 +0000 (12:58 +0200)
committerDaan De Meyer <daan.j.demeyer@gmail.com>
Wed, 15 Oct 2025 14:25:15 +0000 (16:25 +0200)
Same reasoning as for the other distros, devel will always point to
something recent, whereas hardcoding stable release names will get out
of date very soon.

mkosi.conf.d/ubuntu.conf
mkosi/distributions/ubuntu.py

index b4bc572544c722bc4b8f22f3836de5c8f2a8ec4b..b9584a669666c01f49177c5ab0ee1f820f0734ff 100644 (file)
@@ -4,5 +4,5 @@
 Distribution=ubuntu
 
 [Distribution]
-Release=noble
+Release=devel
 Repositories=universe
index 560ba00a725519873efd08a58cb9e0bbe18888ef..2a1996f61bb30c85dd293555eff8e39bbec505b7 100644 (file)
@@ -21,7 +21,7 @@ class Installer(debian.Installer):
 
     @classmethod
     def default_release(cls) -> str:
-        return "noble"
+        return "devel"
 
     @classmethod
     def default_tools_tree_distribution(cls) -> Distribution: