Merge #61 make jigdo optional (iii)
This commit is contained in:
commit
fd537e5070
@ -451,10 +451,14 @@ Options
|
|||||||
**createiso_skip** = False
|
**createiso_skip** = False
|
||||||
(*list*) -- mapping that defines which variants and arches to skip during createiso; format: [(variant_uid_regex, {arch|*: True})]
|
(*list*) -- mapping that defines which variants and arches to skip during createiso; format: [(variant_uid_regex, {arch|*: True})]
|
||||||
|
|
||||||
|
**create_jigdo** = True
|
||||||
|
(*bool*) -- controls the creation of jigdo from ISO
|
||||||
|
|
||||||
.. note::
|
.. note::
|
||||||
|
|
||||||
Source architecture needs to be listed explicitly.
|
Source architecture needs to be listed explicitly.
|
||||||
Excluding '*' applies only on binary arches.
|
Excluding '*' applies only on binary arches.
|
||||||
|
Jigdo causes significant increase of time to ISO creation.
|
||||||
|
|
||||||
|
|
||||||
Example
|
Example
|
||||||
|
@ -162,6 +162,8 @@ class CreateisoPhase(PhaseBase):
|
|||||||
cmd["cmd"].append(iso.get_manifest_cmd(iso_name))
|
cmd["cmd"].append(iso.get_manifest_cmd(iso_name))
|
||||||
|
|
||||||
# create jigdo
|
# create jigdo
|
||||||
|
create_jigdo = compose.conf.get("create_jigdo", True)
|
||||||
|
if create_jigdo:
|
||||||
jigdo = JigdoWrapper(logger=self.compose._logger)
|
jigdo = JigdoWrapper(logger=self.compose._logger)
|
||||||
jigdo_dir = self.compose.paths.compose.jigdo_dir(arch, variant)
|
jigdo_dir = self.compose.paths.compose.jigdo_dir(arch, variant)
|
||||||
files = [
|
files = [
|
||||||
|
Loading…
Reference in New Issue
Block a user