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:
Daniel Mach 2015-07-08 08:58:41 -04:00
parent 90918dc34d
commit 6286e87d3b
3 changed files with 6 additions and 3 deletions

View File

@ -1,3 +1,7 @@
DATE: 2015-08-08
CHANGE: create_optional_isos config option now defaults to False.
ACTION: You can safely remove 'create_optional_isos = False' from config files.
DATE: 2015-08-08
CHANGE: createrepo_c is config option now defaults to True.
ACTION: You can safely remove 'createrepo_c = True' from config files.

View File

@ -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"

View File

@ -78,7 +78,6 @@ createrepo_checksum = "sha256"
# CREATEISO
create_optional_isos = False
symlink_isos_to = None