@@ -, +, @@ --- installer/data/mysql/atomicupdate/skeleton.pl | 7 +++++++ 1 file changed, 7 insertions(+) --- a/installer/data/mysql/atomicupdate/skeleton.pl +++ a/installer/data/mysql/atomicupdate/skeleton.pl @@ -1,4 +1,5 @@ use Modern::Perl; +use Term::ANSIColor; return { bug_number => "BUG_NUMBER", @@ -28,5 +29,11 @@ return { # HTML customizations say $out "Added 'XXX' HTML customization"; + + # Other information + say $out colored("Use red for danger/failure", 'red'); + say $out colored("Use green for success", 'green'); + say $out colored("Use yellow for warning/a call to action", 'yellow'); + say $out colored("Use blue for further information", 'blue'); }, }; --