X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=resources%2Flibraries%2Fpython%2FNGINX%2FNGINXTools.py;h=941fe733e74fae3767c7284f3d73ad71a57e4156;hb=refs%2Fchanges%2F85%2F37685%2F8;hp=9418484f153ced53e7882a8a2d1f7ebb00c58360;hpb=cfb2a1ddc8976d6e6da939132b4963416ef0cb12;p=csit.git diff --git a/resources/libraries/python/NGINX/NGINXTools.py b/resources/libraries/python/NGINX/NGINXTools.py index 9418484f15..941fe733e7 100644 --- a/resources/libraries/python/NGINX/NGINXTools.py +++ b/resources/libraries/python/NGINX/NGINXTools.py @@ -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):