Lorax is a set of tools used to create bootable images.
8bc6282083
See https://bugzilla.redhat.com/show_bug.cgi?id=1595917 and https://github.com/rpm-software-management/dnf/pull/1200 for more on this. Briefly, DNF before 3.0 presented this config value as a list...and mutating it worked. DNF from 3.0 until 3.6 presented it as a list...mutating it didn't work, but also didn't *fail*, so this has actually not been doing anything on DNF 3.x but we haven't noticed. In DNF 3.6 values like this are presented as tuples instead of lists, to try and catch usages like this, and it worked! We need to change this one. There is an additional weirdness here. tsflags is actually, in libdnf terms, an OptionStringListAppend option: that means that when something tries to *set* its value, the new value is just appended to the existing list of values. This is very weird behaviour when you're interacting with it like this, but happens to be quite useful, as we can just 'set' the value to a list like this and it will actually get appended (which is what we want), and this one syntax happens to work correctly in DNF 2.x, 3.0 through 3.5.1, and 3.6. Signed-off-by: Adam Williamson <awilliam@redhat.com> |
||
---|---|---|
docs | ||
etc | ||
rel-eng | ||
share | ||
src | ||
systemd | ||
tests | ||
utils | ||
.coveragerc | ||
.dockerignore | ||
.gitignore | ||
.travis.yml | ||
ANNOUNCE | ||
AUTHORS | ||
COPYING | ||
Dockerfile.test | ||
HACKING.md | ||
lorax.spec | ||
Makefile | ||
POLICY | ||
README.md | ||
requirements.txt | ||
setup.py | ||
TODO |
Lorax is a set of tools used to create bootable images.
- lorax - creates the Anaconda boot.iso used to install Fedora
- livemedia-creator - uses Anaconda to create bootable images
- lorax-composer - API server implementing the Weldr BDCS protocol using livemedia-creator
See the Weldr blog for more info about BDCS and the Lorax documentation for more information about Lorax and associated tools.