aboutsummaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorHarry Huang <huangxiangyu5@huawei.com>2017-03-23 15:52:09 +0800
committerHarry Huang <huangxiangyu5@huawei.com>2017-03-27 14:29:28 +0800
commit88a7278e949b7a4bb777d9f36f0e27eade2b46d6 (patch)
tree0d6ff95298059558115e028d3bd105e61af11078 /util
parent366a89b97863c820a063b62609fa88142550a2f5 (diff)
opera adapter fix2
* opera_adapter need sshpass which may cause deploy fail * compass log redirection is the last command which always return 0 and thus cover deploy error 1. add installation of sshpass in prepare.sh 2. echo a string at the end of deploy/launch.sh into log file to judge if deployment is complete 3. fix typing error in util/check_valid.py Change-Id: Ic4bca50b2c316bf46cace45b9b3317ef9452a0ba Signed-off-by: Harry Huang <huangxiangyu5@huawei.com>
Diffstat (limited to 'util')
-rw-r--r--util/check_valid.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/util/check_valid.py b/util/check_valid.py
index 9eaa100d..e3ad6bcd 100644
--- a/util/check_valid.py
+++ b/util/check_valid.py
@@ -135,7 +135,7 @@ if __name__ == "__main__":
_, dha_file, network_file = sys.argv
if not os.path.exists(dha_file):
- err_print("DHA file doesn't exit")
+ err_print("DHA file doesn't exist")
sys.exit(1)
else:
dha = load_file(dha_file)
@@ -148,7 +148,7 @@ if __name__ == "__main__":
has_invalid = True
if not os.path.exists(network_file):
- err_print("NETWORK file doesn't exit")
+ err_print("NETWORK file doesn't exist")
sys.exit(1)
else:
network = load_file(network_file)