aboutsummaryrefslogtreecommitdiffstats
path: root/bootstrap/vagrant-onap/lib/commons
diff options
context:
space:
mode:
authorVictor Morales <victor.morales@intel.com>2018-03-13 12:36:55 -0700
committerGary Wu <gary.i.wu@huawei.com>2018-03-15 16:58:22 +0000
commitdf17a7ff9ba569227e8a2b5b1863800bbb8e1806 (patch)
tree749011aaf1b514e17c31edd9c12252a95f0aec18 /bootstrap/vagrant-onap/lib/commons
parent1393fc2533cae1271126498f1661dec893922dae (diff)
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 <victor.morales@intel.com> Depends-On: I79df8c35fccaa266a789217d441a6cf1183bd42a Issue-ID: INT-441
Diffstat (limited to 'bootstrap/vagrant-onap/lib/commons')
-rwxr-xr-xbootstrap/vagrant-onap/lib/commons119
1 files changed, 0 insertions, 119 deletions
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
-}