Fix: Nginx check simplified
[csit.git] / resources / libraries / python / NGINX / NGINXTools.py
index 9418484..941fe73 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright (c) 2021 Intel and/or its affiliates.
+# Copyright (c) 2022 Intel and/or its affiliates.
 # Licensed under the Apache License, Version 2.0 (the "License");
 # you may not use this file except in compliance with the License.
 # You may obtain a copy of the License at:
@@ -74,21 +74,15 @@ class NGINXTools:
         :type nginx_version: str
         :raises RuntimeError: If command returns nonzero return code.
         """
-        nginx_path = f"{pkg_dir}/nginx-{nginx_version}/sbin/nginx"
-        cmd_options = NginxUtil.get_cmd_options(path=nginx_path)
-        ret_code, _, stderr = exec_cmd(node, cmd_options, sudo=True)
-        if nginx_version in stderr and ret_code == 0:
-            logger.info(f"NGINX Version: {stderr}")
+        cmd = f"test -f {pkg_dir}/nginx-{nginx_version}/sbin/nginx"
+        ret_code, _, _ = exec_cmd(node, cmd, sudo=True)
+        if ret_code == 0:
             return
         command = f"{Constants.REMOTE_FW_DIR}/{Constants.RESOURCES_LIB_SH}" \
                   f"/entry/install_nginx.sh nginx-{nginx_version}"
         message = u"Install the NGINX failed!"
         exec_cmd_no_error(node, command, sudo=True, timeout=600,
                           message=message)
-        _, stderr = exec_cmd_no_error(node, cmd_options, sudo=True,
-                                      message=message)
-
-        logger.info(f"NGINX Version: {stderr}")
 
     @staticmethod
     def install_vsap_nginx_on_dut(node, pkg_dir):