lorax-composer: Add squashfs_only False to all image types

New livemedia-creator flag needs to be set to the default.
This commit is contained in:
Brian C. Lane 2019-07-26 09:27:41 -07:00
parent c46f9f034f
commit f4a81d6c26
1 changed files with 12 additions and 0 deletions

View File

@ -898,6 +898,7 @@ def compose_args(compose_type):
"app_name": None,
"app_template": None,
"app_file": None,
"squashfs_only": False,
},
"live-iso": {"make_iso": True,
"make_disk": False,
@ -925,6 +926,7 @@ def compose_args(compose_type):
"app_file": None,
"iso_only": True,
"iso_name": "live.iso",
"squashfs_only": False,
},
"partitioned-disk": {"make_iso": False,
"make_disk": True,
@ -950,6 +952,7 @@ def compose_args(compose_type):
"app_name": None,
"app_template": None,
"app_file": None,
"squashfs_only": False,
},
"qcow2": {"make_iso": False,
"make_disk": True,
@ -975,6 +978,7 @@ def compose_args(compose_type):
"app_name": None,
"app_template": None,
"app_file": None,
"squashfs_only": False,
},
"ext4-filesystem": {"make_iso": False,
"make_disk": False,
@ -1000,6 +1004,7 @@ def compose_args(compose_type):
"app_name": None,
"app_template": None,
"app_file": None,
"squashfs_only": False,
},
"ami": {"make_iso": False,
"make_disk": True,
@ -1025,6 +1030,7 @@ def compose_args(compose_type):
"app_name": None,
"app_template": None,
"app_file": None,
"squashfs_only": False,
},
"vhd": {"make_iso": False,
"make_disk": True,
@ -1050,6 +1056,7 @@ def compose_args(compose_type):
"app_name": None,
"app_template": None,
"app_file": None,
"squashfs_only": False,
},
"vmdk": {"make_iso": False,
"make_disk": True,
@ -1075,6 +1082,7 @@ def compose_args(compose_type):
"app_name": None,
"app_template": None,
"app_file": None,
"squashfs_only": False,
},
"openstack": {"make_iso": False,
"make_disk": True,
@ -1100,6 +1108,7 @@ def compose_args(compose_type):
"app_name": None,
"app_template": None,
"app_file": None,
"squashfs_only": False,
},
"google": {"make_iso": False,
"make_disk": True,
@ -1127,6 +1136,7 @@ def compose_args(compose_type):
"app_name": None,
"app_template": None,
"app_file": None,
"squashfs_only": False,
},
"hyper-v": {"make_iso": False,
"make_disk": True,
@ -1152,6 +1162,7 @@ def compose_args(compose_type):
"app_name": None,
"app_template": None,
"app_file": None,
"squashfs_only": False,
},
"alibaba": {"make_iso": False,
"make_disk": True,
@ -1177,6 +1188,7 @@ def compose_args(compose_type):
"app_name": None,
"app_template": None,
"app_file": None,
"squashfs_only": False,
},
}
return _MAP[compose_type]