]> git.ipfire.org Git - thirdparty/mkosi.git/commitdiff
Do not generate manifest by default
authorDaan De Meyer <daan.j.demeyer@gmail.com>
Thu, 24 Aug 2023 06:43:27 +0000 (08:43 +0200)
committerDaan De Meyer <daan.j.demeyer@gmail.com>
Thu, 24 Aug 2023 06:43:27 +0000 (08:43 +0200)
Generally users are not going to be interested in the manifest so
let's not generate it by default to avoid cluttering the output
directory.

mkosi/config.py
mkosi/resources/mkosi.md

index 339c45bd591b9351a0fde3d7136e08d5a8b686c3..42854a43fe725aafd3f8cc11fdcc8355fa179b52 100644 (file)
@@ -924,7 +924,6 @@ class MkosiConfigParser:
             metavar="FORMAT",
             section="Output",
             parse=config_make_list_parser(delimiter=",", parse=make_enum_parser(ManifestFormat)),
-            default=[ManifestFormat.json],
             help="Manifest Format",
         ),
         MkosiConfigSetting(
index d2a6e608a28bc6013ba177f7c064a4db28115e4f..fd22a3d71e4173a0465d9dc6cbb42703af166a9d 100644 (file)
@@ -438,7 +438,8 @@ they should be specified with a boolean argument: either "1", "yes", or "true" t
 : The manifest format type or types to generate. A comma-delimited
   list consisting of `json` (the standard JSON output format that
   describes the packages installed), `changelog` (a human-readable
-  text format designed for diffing). Defaults to `json`.
+  text format designed for diffing). By default no manifest is
+  generated.
 
 `Output=`, `--output=`, `-o`