Add notification message for v2.0.1 38/305138/1
authorwangbiao <biao716.wang@samsung.com>
Mon, 29 Jan 2024 07:10:59 +0000 (16:10 +0900)
committerwangbiao <biao716.wang@samsung.com>
Mon, 29 Jan 2024 07:10:59 +0000 (16:10 +0900)
Change-Id: I44ae544e94d7e9b494cf206fa1a61e897533bc1b
Signed-off-by: wangbiao <biao716.wang@samsung.com>
tools/mic

index e5e1e6d39193532344a439626c8e98264670f64f..597d6539c17d171c40d3ab397c777ec7d5ac5ce6 100755 (executable)
--- a/tools/mic
+++ b/tools/mic
@@ -195,6 +195,15 @@ def main(argv):
         msger.raw("%s %s (%s)" % (name,
                                   VERSION,
                                   misc.get_hostname_distro_str()))
+    def print_notification():
+        """notification since v2.0.1"""
+        print("\n=================================================================================================================================\n")
+        notification_msg = "MIC Notification since v2.0.1:\n"
+        notification_msg += "mic version has been upgraded from python2 to python3. Due to compatibility problem between python2 and python3.\n"
+        notification_msg += "OS of Image creation server for projects using python2 : have to be equal or lower than ubuntu 20.04 and openuse 42.3.\n"
+        notification_msg += "OS of Image creation server for projects using python3 : have to be equal or higher than ubuntu 22.04 and openuse 15.2."
+        print("%s\n" % notification_msg)
+        print("=================================================================================================================================\n")
                                   
     def has_parameter(arg, arglist):
         """
@@ -215,6 +224,9 @@ def main(argv):
     # Add SIGTERM handler for exit gracefully
     signal.signal(signal.SIGTERM, sigterm_handler)
 
+    #print notification for v2.0.1
+    print_notification()
+
     # Create top level parser
     epilog = "Try 'mic SUBCOMMAND --help' for help on a specific subcommand."
     description = "mic - the Image Creation tool"