The wic code inherited a basic image-creation flow based on
image-configuration, but wic doesn't actually configure anything, so
rename parts of the code dealing with configuration to something more
appropriate.
Signed-off-by: Tom Zanussi <tom.zanussi@linux.intel.com>
% (disk_name, full_path, disk['min_size']))
self.__image.assemble(full_path)
- def configure(self):
+ def finalize(self):
"""
- Configure the system image according to kickstart.
+ Finalize the disk image.
- For now, it just prepares the image to be bootable by e.g.
+ For example, prepare the image to be bootable by e.g.
creating and installing a bootloader configuration.
+
"""
source_plugin = self.get_default_source_plugin()
if source_plugin:
try:
creator.create()
creator.assemble()
- creator.configure()
+ creator.finalize()
creator.print_outimage_info()
except errors.CreatorError: