From df17a7ff9ba569227e8a2b5b1863800bbb8e1806 Mon Sep 17 00:00:00 2001 From: Victor Morales Date: Tue, 13 Mar 2018 12:36:55 -0700 Subject: Deprecate vagrant-onap tool The vagrant-onap tool needs to be moved to its own repo to have better control of versions and autonomy. This change removes the project from integration repository. Change-Id: I90bd4505a9fc7376c31a780aa1b833ee2663af3e Signed-off-by: Victor Morales Depends-On: I79df8c35fccaa266a789217d441a6cf1183bd42a Issue-ID: INT-441 --- bootstrap/vagrant-onap/lib/commons | 119 ------------------------------------- 1 file changed, 119 deletions(-) delete mode 100755 bootstrap/vagrant-onap/lib/commons (limited to 'bootstrap/vagrant-onap/lib/commons') diff --git a/bootstrap/vagrant-onap/lib/commons b/bootstrap/vagrant-onap/lib/commons deleted file mode 100755 index 90f73d230..000000000 --- a/bootstrap/vagrant-onap/lib/commons +++ /dev/null @@ -1,119 +0,0 @@ -#!/bin/bash - -# update_repos() - Function that updates linux repositories -function update_repos { - echo "Updating repositories list..." - if [ -f /var/onap/files/sources.list ]; then - cp /var/onap/files/sources.list /etc/apt/sources.list - fi - source /etc/os-release || source /usr/lib/os-release - case ${ID,,} in - *suse) - zypper -n ref - ;; - ubuntu|debian) - if [[ "$debug" == "False" ]]; then - apt-get update > /dev/null - else - apt-get update - fi - ;; - rhel|centos|fedora) - yum updateinfo - ;; - esac -} - -# is_package_installed() - Function to tell if a package is installed -function is_package_installed { - if [[ -z "$@" ]]; then - return 1 - fi - source /etc/os-release || source /usr/lib/os-release - case ${ID,,} in - *suse) - CHECK_CMD="zypper search --match-exact --installed" - ;; - ubuntu|debian) - CHECK_CMD="dpkg -l" - ;; - rhel|centos|fedora) - CHECK_CMD="rpm -q" - ;; - esac - ${CHECK_CMD} "$@" &> /dev/null -} - -# install_packages() - Install a list of packages -function install_packages { - local package=$@ - source /etc/os-release || source /usr/lib/os-release - case ${ID,,} in - *suse) - ;; - ubuntu|debian) - apt-get install -y -qq $package - ;; - rhel|centos|fedora) - ;; - esac -} - -# install_package() - Install specific package if doesn't exist -function install_package { - local package=$1 - - if ! is_package_installed $package; then - echo "Installing $package..." - - source /etc/os-release || source /usr/lib/os-release - case ${ID,,} in - *suse) - zypper install -y $package - ;; - ubuntu|debian) - if [[ "$debug" == "False" ]]; then - apt-get install -y -qq -o=Dpkg::Use-Pty=0 $package - else - apt-get install -y $package - fi - ;; - rhel|centos|fedora) - PKG_MANAGER=$(which dnf || which yum) - ${PKG_MANAGER} -y install $package - ;; - esac - fi -} - -# uninstall_packages() - Uninstall a list of packages -function uninstall_packages { - local packages=$@ - source /etc/os-release || source /usr/lib/os-release - case ${ID,,} in - *suse) - ;; - ubuntu|debian) - apt-get purge -y -qq $packages - ;; - rhel|centos|fedora) - ;; - esac -} - -# uninstall_package() - Uninstall specific package if exists -function uninstall_package { - local package=$1 - if is_package_installed $package; then - source /etc/os-release || source /usr/lib/os-release - case ${ID,,} in - *suse) - ;; - ubuntu|debian) - apt-get purge -y -qq $package - ;; - rhel|centos|fedora) - ;; - esac - fi -} -- cgit 1.2.3-korg