From 73917413dc0cd5b7971d4c96ed7c82362392a1a6 Mon Sep 17 00:00:00 2001 From: Geaaru Date: Sat, 1 Sep 2018 16:32:17 +0200 Subject: [PATCH] Add support to customize ISO title --- src/builtin_plugin.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/builtin_plugin.py b/src/builtin_plugin.py index 1eb3042..e79e212 100644 --- a/src/builtin_plugin.py +++ b/src/builtin_plugin.py @@ -558,7 +558,10 @@ class IsoHandler(GenericExecutionStep, BuiltinHandlerMixin): release_desc.replace(' ', '_'), ) self.dest_iso = os.path.join(dest_iso_dir, dest_iso_filename) - self.iso_title = "%s %s %s" % (release_string, release_version, release_desc,) + self.iso_title = \ + os.getenv('MOLECULE_ISO_TITLE', "%s %s %s" % ( + release_string, release_version, release_desc, + )) self.source_chroot = self.metadata['source_chroot'] self.chroot_dir = os.path.join( self.metadata['destination_chroot'], "chroot",