Distribution compose tool
  • Python 99%
  • Shell 0.5%
  • XSLT 0.3%
  • Makefile 0.2%
Find a file
Lubomír Sedlář 4736f6ccf8 boot_iso: restrict to a single config block per variant
Multiple config blocks for the same variant all write to the same fixed
destination path (<os_tree>/images/boot.iso), so whichever block
finishes last would silently overwrite the first.

Replace the array-of-objects schema with a plain object in both
boot_iso_imagebuilder and boot_iso_kiwi.

get_variant_data() already handles non-list values by appending them, so
get_config_block() continues to return a list with one entry per
matching pattern, and run() uses configs[0].

Signed-off-by: Lubomír Sedlář <lsedlar@redhat.com>
2026-08-14 12:26:48 +02:00
.forgejo/workflows Switch to Forgejo Actions as CI 2026-07-23 11:29:32 +02:00
contrib OpenShift kubeconfig generation script. 2025-10-31 11:51:19 +01:00
doc doc: add BootIso phase and boot_iso_method config documentation 2026-08-13 09:23:12 +02:00
pungi boot_iso: restrict to a single config block per variant 2026-08-14 12:26:48 +02:00
pungi_utils Black 26.1.0 new format 2026-02-05 17:27:21 +01:00
share Allow setting <kojitag/> in <modules/> in variants.xml to get the modules from this Koji tag. 2018-03-21 14:33:45 +01:00
tests boot_iso: restrict to a single config block per variant 2026-08-14 12:26:48 +02:00
.gitignore nomacboot option for livemedia koji tasks 2022-03-23 09:36:51 +01:00
AUTHORS extra-files: Write a metadata file enumerating extra files 2016-09-07 13:02:48 +02:00
COPYING Remove FSF address from comments 2016-09-23 10:26:43 +02:00
git-changelog git-changelog: Fix running on Python 3 2019-07-02 15:05:25 +02:00
GPL Update GPL to latest version from https://www.gnu.org/licenses/gpl-2.0.txt 2015-06-25 07:50:03 -04:00
Makefile Use pytest instead of nosetests 2020-07-29 14:57:16 +08:00
MANIFEST.in Default bztar format for sdist command 2022-12-12 12:10:54 +01:00
README.md Update documentation links 2026-07-23 11:29:32 +02:00
requirements.txt Generate RPM repo mapping 2026-03-16 17:04:59 +08:00
setup.cfg Default bztar format for sdist command 2022-12-12 12:10:54 +01:00
setup.py Release 4.13.0 2026-05-06 08:33:58 +02:00
test-requirements.txt Drop parameterized dependency 2025-11-13 12:39:57 +01:00
TODO Drop buildinstall method 2023-10-18 06:38:14 +00:00
tox.ini Drop parameterized dependency 2025-11-13 12:39:57 +01:00

Pungi

Pungi is a distribution compose tool.

Composes are release snapshots that contain release deliverables such as:

  • installation trees
    • RPMs
    • repodata
    • comps
  • (bootable) ISOs
  • kickstart trees
    • anaconda images
    • images for PXE boot

Tool overview

Pungi consists of multiple separate executables backed by a common library.

The main entry-point is the pungi-koji script. It loads the compose configuration and kicks off the process. Composing itself is done in phases. Each phase is responsible for generating some artifacts on disk and updating the compose object that is threaded through all the phases.

Pungi itself does not actually do that much. Most of the actual work is delegated to separate executables. Pungi just makes sure that all the commands are invoked in the appropriate order and with correct arguments. It also moves the artifacts to correct locations.