aboutsummaryrefslogtreecommitdiffstats
path: root/script/bootstrap
blob: 10dc94bdfee3794757237c8ce284b3e87ae6aa9b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/sh

set -e
cd "$(dirname "$0")/.."

git submodule --quiet update --init --recursive --rebase

# Let's see if we can't work out where we might be running.
if cut -d/ -f2 /proc/self/cgroup | sort -u | grep -q docker ; then
    if [ -z ${SKIP_PACKAGES_INSTALL:+x} ] ; then
        echo "==> Installing Docker packages..."
        sudo bin/install_packages docker
    fi
else
    # Fallback
    echo "==> Installing generic packages..."
    sudo bin/install_packages generic
fi

bin/install_perl_modules