blob: f40e97b182f398a4cdb0a255e1693d9dc503b1bf (
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
if [ -z ${SKIP_PACKAGES_INSTALL:+x} ] ; then
# 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
echo "==> Installing Docker packages..."
sudo bin/install_packages docker
else
# Fallback
echo "==> Installing generic packages..."
sudo bin/install_packages generic
fi
fi
bin/install_perl_modules
|