aboutsummaryrefslogtreecommitdiffstats
path: root/bootstrap/vagrant-onap/lib/commons
blob: 019eeb5c233a2f82752f38bc9f2f57c065454c66 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#!/bin/bash

set -o xtrace

# update_repos() - Function that updates linux repositories
function update_repos {
    if [ -f /var/onap/files/sources.list ]; then
        cp /var/onap/files/sources.list /etc/apt/sources.list
    fi
    if [ -f /var/onap/files/proxyrc ]; then
        source /var/onap/files/proxyrc
        cp /var/onap/files/proxyrc /etc/profile.d/proxy.sh

        if [ -f /etc/apt/apt.conf ]; then
            echo "Acquire::http::Proxy \"${http_proxy}\";" >>  /etc/apt/apt.conf
            echo "Acquire::https::Proxy \"${https_proxy}\";" >>  /etc/apt/apt.conf
        fi
        if [ -d /etc/apt/apt.conf.d ] & [ ! -f /etc/apt/apt.conf.d/70proxy.conf ]; then
            echo "Acquire::http::Proxy \"${http_proxy}\";" >>  /etc/apt/apt.conf.d/70proxy.conf
            echo "Acquire::https::Proxy \"${https_proxy}\";" >>  /etc/apt/apt.conf.d/70proxy.conf
        fi
    fi
    apt-get update -qq -y
}

# is_package_installed() - Function to tell if a package is installed
function is_package_installed {
    if [[ -z "$@" ]]; then
        return 1
    fi
    dpkg -s "$@" > /dev/null 2> /dev/null
}

# install_package() - Install specific package if doesn't exist
function install_package {
    local package=$1
    if ! is_package_installed $package; then
        update_repos
        apt-get install -y -qq $package
    fi
}