From 87be76e6c8b3024c05fe76a97a5a922486a64bb9 Mon Sep 17 00:00:00 2001 From: shangxdy Date: Thu, 31 Aug 2017 10:22:48 +0800 Subject: Package for funectest Modify the install script JIRA: PARSER-125 Change-Id: Ia43687286fb8ac3b18b816aa5e4928ce9a12beec Signed-off-by: shangxdy --- tools/parser_install.sh | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100755 tools/parser_install.sh (limited to 'tools') diff --git a/tools/parser_install.sh b/tools/parser_install.sh new file mode 100755 index 0000000..d03bbb8 --- /dev/null +++ b/tools/parser_install.sh @@ -0,0 +1,41 @@ +#!/bin/bash -e +############################################################################## +# Copyright (c) 2016 ZTE Corporation. +# +# All rights reserved. This program and the accompanying materials +# are made available under the terms of the Apache License, Version 2.0 +# which accompanies this distribution, and is available at +# http://www.apache.org/licenses/LICENSE-2.0 +############################################################################## + +set +e +BASE_WORK_DIR=$(cd $(dirname $0) && pwd) + +OPNFV_REPO_DIR=${1:-""} + +# start syslog for loghander +service rsyslog restart && echo "syslog start successfully" + +# install requirements for parser +if [ -n "${OPNFV_REPO_DIR}" ]; then + echo " OPNFV repository directory is ${OPNFV_REPO_DIR}" + pip install -r ${OPNFV_REPO_DIR}/parser/tosca2heat/tosca-parser/requirements.txt + pip install -r ${OPNFV_REPO_DIR}/parser/tosca2heat/heat-translator/requirements.txt +else + echo "No input for OPNFV repository directory, will use local directory" + pip install -r ${BASE_WORK_DIR}/../tosca2heat/tosca-parser/requirements.txt + pip install -r ${BASE_WORK_DIR}/../tosca2heat/heat-translator/requirements.txt +fi + +# uninstall other tosca-parser and heat-translator for parser +pip uninstall -y tosca-parser +pip uninstall -y heat-translator + +# install parser +if [ -n "${OPNFV_REPO_DIR}" ]; then + cd ${OPNFV_REPO_DIR}/parser/tosca2heat/heat-translator && python setup.py install + cd ${OPNFV_REPO_DIR}/parser/tosca2heat/tosca-parser && python setup.py install +else + cd ${BASE_WORK_DIR}/../tosca2heat/heat-translator && python setup.py install + cd ${BASE_WORK_DIR}/../tosca2heat/tosca-parser && python setup.py install +fi \ No newline at end of file -- cgit 1.2.3-korg