Devops Cleanup
[osm/devops.git] / tools / OVF_converter / install.sh
diff --git a/tools/OVF_converter/install.sh b/tools/OVF_converter/install.sh
deleted file mode 100755 (executable)
index d25c1f6..0000000
+++ /dev/null
@@ -1,83 +0,0 @@
-#!/usr/bin/env bash
-
-##
-# Copyright 2016-2017 VMware Inc.
-# This file is part of ETSI OSM
-# All Rights Reserved.
-#
-# 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
-#
-#         http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
-# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
-# License for the specific language governing permissions and limitations
-# under the License.
-#
-# For those usages not covered by the Apache License, Version 2.0 please
-# contact:  osslegalrouting@vmware.com
-##
-
-echo '
- ################################################################
- #####             Installing Required Packages             #####
- ################################################################'
-
-# Paths to copy application files
-Install_dir="/usr/local/bin"
-App_dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
-Converter_App_CLI_path="${App_dir}/ovf_converter_cli.py"
-Converter_Install_CLI_path="${Install_dir}/OVF_converter/ovf_converter_cli.py"
-Uploader_App_CLI_path="${App_dir}/ovf_uploader_cli.py"
-Uploader_Install_CLI_path="${Install_dir}/OVF_converter/ovf_uploader_cli.py"
-Logs_Folder="${Install_dir}/OVF_converter/logs"
-
-#Function to install packages using apt-get
-function install_packages(){
-      [ -x /usr/bin/apt-get ] && apt-get install -y $*
-
-       #check properly installed
-       for PACKAGE in $*
-       do
-           PACKAGE_INSTALLED="no"
-           [ -x /usr/bin/apt-get ] && dpkg -l $PACKAGE            &>> /dev/null && PACKAGE_INSTALLED="yes"
-           if [ "$PACKAGE_INSTALLED" = "no" ]
-           then
-               echo "failed to install package '$PACKAGE'. Revise network connectivity and try again" >&2
-               exit 1
-          fi
-       done
-   }
-
-apt-get update  # To get the latest package lists
-install_packages "libxml2-dev libxslt-dev python-dev python-pip python-lxml python-yaml"
-install_packages "qemu-utils"
-
-#apt-get install <package name> -y
-
-#Move OVF Converter to usr/bin
-cp -R "${App_dir}"   "${Install_dir}"
-
-#Create logs folder and file
-mkdir "${Logs_Folder}"
-
-#Change permission
-chmod -R 777 ${Converter_Install_CLI_path}
-chmod -R 777 ${Uploader_Install_CLI_path}
-chmod -R 777 ${Logs_Folder}
-
-touch "${Install_dir}/ovf_converter"
-echo  "#!/bin/sh" > "${Install_dir}/ovf_converter"
-echo  "python3 ${Converter_Install_CLI_path} \"\$@\"" >> "${Install_dir}/ovf_converter"
-chmod a+x "${Install_dir}/ovf_converter"
-
-touch "${Install_dir}/ovf_uploader"
-echo  "#!/bin/sh" > "${Install_dir}/ovf_uploader"
-echo  "python3 ${Uploader_Install_CLI_path} \"\$@\"" >> "${Install_dir}/ovf_uploader"
-chmod a+x "${Install_dir}/ovf_uploader"
-
-echo "Installation complete.  More information can be found at:"
-echo "  ${Install_dir}/OVF_converter/Usage.txt"