Config option create_optional_isos now defaults to False.
CHANGE: create_optional_isos config option now defaults to False. ACTION: You can safely remove 'create_optional_isos = False' from config files.
This commit is contained in:
parent
90918dc34d
commit
6286e87d3b
3 changed files with 6 additions and 3 deletions
|
|
@ -436,7 +436,7 @@ class ComposePaths(object):
|
|||
if variant.type == "addon":
|
||||
return None
|
||||
if variant.type == "optional":
|
||||
if not self.compose.conf["create_optional_isos"]:
|
||||
if not self.compose.conf.get("create_optional_isos", False):
|
||||
return None
|
||||
if arch == "src":
|
||||
arch = "source"
|
||||
|
|
@ -502,7 +502,7 @@ class ComposePaths(object):
|
|||
if variant.type == "addon":
|
||||
return None
|
||||
if variant.type == "optional":
|
||||
if not self.compose.conf["create_optional_isos"]:
|
||||
if not self.compose.conf.get("create_optional_isos", False):
|
||||
return None
|
||||
if arch == "src":
|
||||
arch = "source"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue